mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
25 lines
765 B
Python
25 lines
765 B
Python
import unittest
|
|
from slpkg.checks import Check
|
|
from slpkg.sbos.queries import SBoQueries
|
|
|
|
|
|
class TestPkgInstalled(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.bin_queries = SBoQueries('sbo')
|
|
self.data = self.bin_queries.repository_data()
|
|
self.check = Check('sbo')
|
|
self.packages = ['colored', 'sbo-create', 'sun']
|
|
|
|
def test_check_exists(self):
|
|
self.assertIsNone(self.check.package_exists_in_the_database(self.packages, self.data))
|
|
|
|
def test_check_unsupported(self):
|
|
self.assertIsNone(self.check.is_package_unsupported(self.packages, self.data))
|
|
|
|
def test_check_is_installed(self):
|
|
self.assertIsNone(self.check.is_package_installed(self.packages))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|