mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
25 lines
662 B
Python
25 lines
662 B
Python
import unittest
|
|
from slpkg.checks import Check
|
|
|
|
|
|
class TestPkgInstalled(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.check = Check()
|
|
self.packages = ['fish', 'ranger', 'pycharm']
|
|
|
|
def test_check_exists(self):
|
|
self.assertIsNone(self.check.exists(self.packages))
|
|
|
|
def test_check_unsupported(self):
|
|
self.assertIsNone(self.check.unsupported(self.packages))
|
|
|
|
def test_check_installed(self):
|
|
self.assertListEqual(self.packages, self.check.installed(self.packages))
|
|
|
|
def test_check_blacklist(self):
|
|
self.assertIsNone(self.check.blacklist(self.packages))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|