summaryrefslogtreecommitdiffstats
path: root/core/TESTS
diff options
context:
space:
mode:
Diffstat (limited to 'core/TESTS')
-rw-r--r--core/TESTS/test_parsers.py3
1 files changed, 3 insertions, 0 deletions
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