Skip to content

Commit

Permalink
test: test regexp operator #297
Browse files Browse the repository at this point in the history
  • Loading branch information
VKTB committed Jan 19, 2022
1 parent bf3fe0e commit f25333f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/datagateway_api/icat/filters/test_where_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class TestICATWhereFilter:
),
pytest.param("nin", [], ["%s not in (NULL)"], id="not in empty list"),
pytest.param("between", [1, 2], ["%s between '1' and '2'"], id="between"),
pytest.param("regexp", "^Test", ["%s regexp '^Test'"], id="regexp"),
],
)
def test_valid_operations(
Expand Down

0 comments on commit f25333f

Please sign in to comment.