瀏覽代碼

added an example test case

Dimitri Korsch 3 年之前
父節點
當前提交
4fddd32c66
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      backend/pycs_api/tests.py

+ 6 - 0
backend/pycs_api/tests.py

@@ -1,3 +1,9 @@
 from django.test import TestCase
 
 # Create your tests here.
+
+class SimpleTest(TestCase):
+
+    def test_something(self):
+        self.assertTrue(True)
+