Add app for lists, with deliberately failing unit test

This commit is contained in:
2024-10-23 12:50:06 -06:00
parent 49c79f3bbe
commit e373ec5d69
7 changed files with 21 additions and 0 deletions

6
lists/tests.py Normal file
View File

@@ -0,0 +1,6 @@
from django.test import TestCase
# Create your tests here.
class SmokeTest(TestCase):
def test_bad_maths(self):
self.assertEqual(1 + 1, 3)