Skip to content

Commit

Permalink
add extra test
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbrn committed Aug 13, 2024
1 parent b567866 commit 862cae9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/nested_pandas/nestedframe/test_nestedframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,10 @@ def test_from_lists():
assert list(res.columns) == ["nested"]
assert list(res.nested_columns) == ["nested"]

res = NestedFrame.from_lists(nf, base_columns=None, list_columns=["e"])
assert list(res.columns) == ["nested"]
assert list(res.nested_columns) == ["nested"]


def test_query():
"""Test that NestedFrame.query handles nested queries correctly"""
Expand Down

0 comments on commit 862cae9

Please sign in to comment.