From a53e85ff69d05c26615285d32ea1f92787821ca2 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Fri, 16 Feb 2018 08:08:51 +0545 Subject: [PATCH] tests: stubs for future whitelist/blacklist tests. --- tests/responder_test.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/responder_test.py b/tests/responder_test.py index 7256cb88..d7239e80 100644 --- a/tests/responder_test.py +++ b/tests/responder_test.py @@ -78,5 +78,19 @@ class BrokenModulesTest(unittest2.TestCase): self.assertIsInstance(msg.unpickle(), tuple) +class BlacklistTest(unittest.TestCase): + def test_whitelist_no_blacklist(self): + assert 0 + + def test_whitelist_has_blacklist(self): + assert 0 + + def test_blacklist_no_whitelist(self): + assert 0 + + def test_blacklist_has_whitelist(self): + assert 0 + + if __name__ == '__main__': unittest2.main()