Skip to content

Commit

Permalink
test: add test for list of dicts input to memtable
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and kszucs committed Aug 25, 2022
1 parent 0cc6948 commit a16814c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,11 @@ def test_deprecated_path_argument(backend, tmp_path):
),
id="dataframe",
),
param(
ibis.memtable([dict(a=1), dict(a=2)]),
pd.DataFrame({"a": [1, 2]}),
id="list_of_dicts",
),
],
)
@pytest.mark.notyet(
Expand Down

0 comments on commit a16814c

Please sign in to comment.