tests: mark some tests as skipped

This commit is contained in:
David Wilson 2018-03-18 20:44:47 +05:45
parent f241eac5ce
commit 2132c311b2
1 changed files with 4 additions and 0 deletions

View File

@ -79,15 +79,19 @@ class BrokenModulesTest(unittest2.TestCase):
class BlacklistTest(unittest2.TestCase):
@unittest2.skip('implement me')
def test_whitelist_no_blacklist(self):
assert 0
@unittest2.skip('implement me')
def test_whitelist_has_blacklist(self):
assert 0
@unittest2.skip('implement me')
def test_blacklist_no_whitelist(self):
assert 0
@unittest2.skip('implement me')
def test_blacklist_has_whitelist(self):
assert 0