Skip to content

Commit

Permalink
Merge pull request #6411 from knabar/table-api-test
Browse files Browse the repository at this point in the history
Check query without matches
  • Loading branch information
jburel authored Nov 19, 2024
2 parents 86f45c7 + c1ca0e9 commit c5d36ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/tools/OmeroWeb/test/integration/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ def test_table_query(self, omero_table_file, django_client, table_data):
["query=SmallNumbers<0.1&col_name=Well", "000001"],
# IDs 4 & 6 are True for query
['query=SmallNumbers>0.5&col_name=IDs', "0000101"],
# a query that does not match anything
['query=SmallNumbers>100', "0000000"],
# a query that matches everything
['query=SmallNumbers>0&col_name=Well', "011111"],
])
def test_table_bitmask(self, omero_table_file,
django_client, query_result):
Expand Down

0 comments on commit c5d36ce

Please sign in to comment.