Browse Source

added an example test case

Dimitri Korsch 3 years ago
parent
commit
4fddd32c66
1 changed files with 6 additions and 0 deletions
  1. 6 0
      backend/pycs_api/tests.py

+ 6 - 0
backend/pycs_api/tests.py

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