Skip to content

Commit 4d63f53

Browse files
authored
Update and rename test_numeric.py to test_math.py
1 parent a7b2a25 commit 4d63f53

File tree

2 files changed

+14
-22
lines changed

2 files changed

+14
-22
lines changed

tests/test_math.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import unittest
2+
3+
from allalgorithms.math import (
4+
find_max
5+
)
6+
7+
class TestMax(unittest.TestCase):
8+
9+
def test_find_max_value(self):
10+
test_list = [3, 1, 8, 7, 4]
11+
self.assertEqual(8, find_max(test_list))
12+
13+
if __name__ == "__main__":
14+
unittest.main()

tests/test_numeric.py

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)