Tests added

This commit is contained in:
normal 2024-06-22 05:36:48 +03:00
parent 45a87a8dc3
commit c1a737cd73

View file

@ -183,11 +183,17 @@ class TestKeyboardBuilder:
[
[0, False, [], []],
[0, False, [2], []],
[0, False, [-2], []],
[1, False, [2], [1]],
[1, False, [-2], [1]],
[3, False, [2], [2, 1]],
[3, False, [-2], [1, 2]],
[10, False, [3, 2, 1], [3, 2, 1, 1, 1, 1, 1]],
[10, False, [3, 2, -1], [3, 2, 2, 2, 1]],
[10, False, [3, -2, 1], [3, 1, 1, 1, 1, 1, 2]],
[12, False, [], [10, 2]],
[12, True, [3, 2, 1], [3, 2, 1, 3, 2, 1]],
[12, True, [3, -1, -4], [3, 3, 1, 1, 4]],
],
)
def test_adjust(self, count, repeat, sizes, shape):