slpkg/tests/test_checks.py
Dimitris Zlatanidis 91bff1e76e Updated for names
2023-05-08 14:07:37 +03:00

25 lines
764 B
Python

import unittest
from slpkg.checks import Check
from slpkg.binaries.queries import BinQueries
class TestPkgInstalled(unittest.TestCase):
def setUp(self):
self.bin_queries = BinQueries('alien')
self.data = self.bin_queries.repository_data()
self.check = Check('aline', self.data)
self.packages = ['audacity', 'vlc', 'dnspython']
def test_check_exists(self):
self.assertIsNone(self.check.package_exists_in_the_database(self.packages))
def test_check_unsupported(self):
self.assertIsNone(self.check.is_package_unsupported(self.packages))
def test_check_is_installed(self):
self.assertIsNone(self.check.is_package_unsupported(self.packages))
if __name__ == "__main__":
unittest.main()