From 394d94d5d6916b3aa61c7f89ce1b37798d3a87a1 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Fri, 24 Feb 2023 23:12:44 +0000 Subject: [PATCH] Extended test --- core/TESTS/test_parsers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/TESTS/test_parsers.py b/core/TESTS/test_parsers.py index 110dadc..85869d3 100644 --- a/core/TESTS/test_parsers.py +++ b/core/TESTS/test_parsers.py @@ -63,6 +63,7 @@ class ImportTest(TestCase): phil = make_person("Phil", "Tosser", nickname="tosspot") dave = make_person("David", "Smartarse", "") mike = make_person("Michael", "Wideboy", "WB", vfho=True) + # NOT created Kurt, as the whole point is that he is a guest. def setUp(self): pass @@ -97,3 +98,5 @@ class ImportTest(TestCase): for e in expected: self.assertIn(e, messages) + for e in not_expected: + self.assertNotIn(e, messages) \ No newline at end of file