mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
18 lines
356 B
Python
18 lines
356 B
Python
import unittest
|
|
from slpkg.blacklist import Blacklist
|
|
|
|
|
|
class TestBlacklist(unittest.TestCase):
|
|
|
|
""" Test for blacklist files.
|
|
"""
|
|
|
|
def test_blacklist(self) -> None:
|
|
""" Test blacklist packages.
|
|
"""
|
|
black = Blacklist()
|
|
self.assertTupleEqual((), black.packages())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|