Procházet zdrojové kódy

added an example test case

Dimitri Korsch před 3 roky
rodič
revize
4fddd32c66
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  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)
+