diff --git a/backend/secfit/workouts/tests.py b/backend/secfit/workouts/tests.py index 7fbbf7847f5b0f201d408d4017cc865d614e2615..32ba4541d12cdfea7041207c8a4ad5ff0fb71f9e 100644 --- a/backend/secfit/workouts/tests.py +++ b/backend/secfit/workouts/tests.py @@ -4,3 +4,13 @@ Tests for the workouts application. from django.test import TestCase # Create your tests here. +class TestTestCase(TestCase): + + def test_true(self): + """Animals that can speak are correctly identified""" + self.assertTrue(True) + + + def test_false(self): + """Animals that can speak are correctly identified""" + self.assertFalse(True) \ No newline at end of file