diff --git a/src/lists/tests.py b/src/lists/tests.py index 7ce503c..07c8325 100644 --- a/src/lists/tests.py +++ b/src/lists/tests.py @@ -1,3 +1,6 @@ from django.test import TestCase -# Create your tests here. +class SmokeTest(TestCase): + + def test_bad_maths(self): + self.assertEqual(1+1,3) \ No newline at end of file