From 6a41fcb08feb7ace8482bd74192fc6b6a9049f49 Mon Sep 17 00:00:00 2001 From: Daizu Date: Mon, 8 Jul 2024 20:22:40 +0900 Subject: [PATCH] Add test --- tests/test_tables.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_tables.py b/tests/test_tables.py index ad8e532..f67097d 100644 --- a/tests/test_tables.py +++ b/tests/test_tables.py @@ -123,10 +123,12 @@ def test_minimize_height(table: Table): assert x > y -def test_cells(columns: Columns): +def test_cells(rows: Rows, columns: Columns): cells = columns(1).cells assert cells.api.__class__.__name__ == "CellRange" assert cells.__class__.__name__ == "CellRange" + assert cells.api.Count == 2 + assert len(columns) == 3 def test_tables_repr(tables: Tables):