Skip to content

Commit

Permalink
test: add NotContains backend test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Aug 2, 2022
1 parent 6545f4d commit 29ad5f4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ibis/backends/tests/test_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,12 @@ def test_approx_median(alltypes):
marks=mark.notimpl(["dask"]),
id='is_in',
),
param(
lambda t: t.string_col.notin(['1', '7']),
lambda t: ~t.string_col.isin(['1', '7']),
marks=mark.notimpl(["dask"]),
id='not_in',
),
],
)
@mark.notimpl(["datafusion"])
Expand Down

0 comments on commit 29ad5f4

Please sign in to comment.