diff options
Diffstat (limited to 'tests/test_search.py')
-rw-r--r-- | tests/test_search.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_search.py b/tests/test_search.py index 75559d3..d1fc75f 100644 --- a/tests/test_search.py +++ b/tests/test_search.py @@ -612,6 +612,12 @@ def test_explain(client): @pytest.mark.redismod +def test_explaincli(client): + with pytest.raises(NotImplementedError): + client.ft().explain_cli("foo") + + +@pytest.mark.redismod def test_summarize(client): createIndex(client.ft()) waitForIndex(client, "idx") |