mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
13 lines
256 B
Python
13 lines
256 B
Python
import unittest
|
|
from slpkg.blacklist import Blacklist
|
|
|
|
|
|
class TestBlacklist(unittest.TestCase):
|
|
|
|
def test_blacklist(self):
|
|
black = Blacklist()
|
|
self.assertTupleEqual((), black.packages())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|