We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e931f75 commit 3e114beCopy full SHA for 3e114be
pandas/tests/io/pytables/test_store.py
@@ -317,6 +317,9 @@ class Table3(tables.IsDescription):
317
expected = {"/group/table1", "/group/table2", "/group/table3"}
318
assert set(store.keys(include="native")) == expected
319
assert set(store.keys(include="pandas")) == set()
320
+ for name in expected:
321
+ df = store.get(name)
322
+ assert len(df.columns) == 1
323
324
def test_keys_illegal_include_keyword_value(self, setup_path):
325
with ensure_clean_store(setup_path) as store:
0 commit comments