浏览代码

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)