Commit ccd9c623 authored by David Wilson's avatar David Wilson

tests: stubs for future whitelist/blacklist tests.

parent 74468abf
......@@ -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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment