summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-02-24 23:12:44 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-02-24 23:12:44 +0000
commit394d94d5d6916b3aa61c7f89ce1b37798d3a87a1 (patch)
tree3084c9826d50f0bd0295fdee12006fa1de3fa2ea
parenta3fc9a17ed7b874434ce9ac5908bdc7fe377203e (diff)
downloadtroggle-394d94d5d6916b3aa61c7f89ce1b37798d3a87a1.tar.gz
troggle-394d94d5d6916b3aa61c7f89ce1b37798d3a87a1.tar.bz2
troggle-394d94d5d6916b3aa61c7f89ce1b37798d3a87a1.zip
Extended test
-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