mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
3ab06176ca
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
13 lines
No EOL
306 B
Python
13 lines
No EOL
306 B
Python
from slpkg.utils import Utils
|
|
|
|
|
|
def test_dimensional_list():
|
|
lists = [[1, 2, 3, 4, 5]]
|
|
utils = Utils()
|
|
assert [1, 2, 3, 4, 5] == utils.dimensional_list(lists)
|
|
|
|
|
|
def test_remove_dbs():
|
|
lists = [1, 2, 3, 3, 4, 5, 2, 1]
|
|
utils = Utils()
|
|
assert [1, 2, 3, 4, 5] == utils.remove_dbs(lists) |