We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b441145 + ee0c7c2 commit f7a8813Copy full SHA for f7a8813
1 file changed
tests/test_tables.py
@@ -1995,3 +1995,9 @@ def test_num_columns(table):
1995
"""Test that Tables returns right number of columns"""
1996
number = table.num_columns
1997
assert number == 3
1998
+
1999
+def test_with_columns(table):
2000
+ """Test that with_columns returns self if no labels_and_values passed"""
2001
+ t = table.with_columns()
2002
2003
+ assert table is t
0 commit comments