From 6db53bce6929d31972b83467fde8ad39c5dc99b9 Mon Sep 17 00:00:00 2001 From: JasonHomeWorkstationUbuntu Date: Thu, 15 Oct 2020 17:47:38 +1100 Subject: [PATCH] Chapter3.2 Unit testing in Django, Add app for lists, with deliverately failing unit test --- src/lists/tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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