mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
15 lines
339 B
Python
15 lines
339 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()
|