2022-04-24 19:03:25 +02:00
|
|
|
import unittest
|
2020-01-18 16:32:29 +01:00
|
|
|
from slpkg.utils import Utils
|
|
|
|
|
|
|
|
|
2022-04-24 19:03:25 +02:00
|
|
|
class TestUtils(unittest.TestCase):
|
2020-01-18 16:32:29 +01:00
|
|
|
|
2022-04-24 19:03:25 +02:00
|
|
|
def test_dimensional_list(self):
|
|
|
|
"""Testing dimesional list util
|
|
|
|
"""
|
|
|
|
lists = [[1, 2, 3, 4, 5]]
|
|
|
|
utils = Utils()
|
|
|
|
self.assertEqual([1, 2, 3, 4, 5], utils.dimensional_list(lists))
|
2020-01-18 16:32:29 +01:00
|
|
|
|
2022-04-24 19:03:25 +02:00
|
|
|
def test_remove_dbs(self):
|
|
|
|
"""Testing removing doubles item from list
|
|
|
|
"""
|
|
|
|
lists = [1, 2, 3, 3, 4, 5, 2, 1]
|
|
|
|
utils = Utils()
|
|
|
|
self.assertEqual([1, 2, 3, 4, 5], utils.remove_dbs(lists))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|