parent
ffd3c5262a
commit
6fb65c1e7b
@ -0,0 +1,14 @@
|
|||||||
|
import unittest
|
||||||
|
|
||||||
|
from my_sum import sum
|
||||||
|
|
||||||
|
|
||||||
|
class CheckSum(unittest.TestCase):
|
||||||
|
def test_list_int(self):
|
||||||
|
data = [1, 2, 3]
|
||||||
|
result = sum(data)
|
||||||
|
self.assertEqual(result, 6)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
@ -0,0 +1 @@
|
|||||||
|
This is for testing purpose
|
@ -1,2 +1,3 @@
|
|||||||
a=5 b=6 c=7
|
a=5 b=6 c=7
|
||||||
Machine learning is the future of technology
|
Machine learning is the future of technology
|
||||||
|
but data engineering is also a wonderful domain
|
Loading…
Reference in new issue