diff --git a/tests/test_tables.py b/tests/test_tables.py index 267e0ae1..eb1cf3e7 100644 --- a/tests/test_tables.py +++ b/tests/test_tables.py @@ -1158,6 +1158,11 @@ def test_remove_single(table): z | 1 | 10 """) +def test_remove_none(table): + num_rows_before = table.num_rows + assert table.remove([]) is None + assert table.num_rows == num_rows_before + def test_remove_zeroth_row(table): table.remove(0) assert_equal(table, """