Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
daizutabi committed Jul 8, 2024
1 parent 4e1eb86 commit 6a41fcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 6a41fcb

Please sign in to comment.