Преглед изворни кода

Adding a sample test, hooking up nosetests

David Leonard пре 10 година
родитељ
комит
3b4c03a524
1 измењених фајлова са 8 додато и 0 уклоњено
  1. 8 0
      hackathon_starter/hackathon/unittests/testcase.py

+ 8 - 0
hackathon_starter/hackathon/unittests/testcase.py

@@ -0,0 +1,8 @@
+import unittest
+
+def fun(x):
+    return x + 1
+
+class MyTest(unittest.TestCase):
+    def test(self):
+        self.assertEqual(fun(3), 4)