(self, client)
| 704 | |
| 705 | @pytest.mark.redismod |
| 706 | def test_explain(self, client): |
| 707 | client.ft().create_index((TextField("f1"), TextField("f2"), TextField("f3"))) |
| 708 | res = client.ft().explain("@f3:f3_val @f2:f2_val @f1:f1_val") |
| 709 | assert res |
| 710 | |
| 711 | @pytest.mark.redismod |
| 712 | def test_explaincli(self, client): |
nothing calls this directly
no test coverage detected