mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
14 lines
250 B
Python
14 lines
250 B
Python
|
import unittest
|
||
|
from slpkg.blacklist import Blacklist
|
||
|
|
||
|
|
||
|
class TestBlacklist(unittest.TestCase):
|
||
|
|
||
|
def test_blacklist(self):
|
||
|
black = Blacklist()
|
||
|
self.assertListEqual([], black.get())
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|