()
| 13 | |
| 14 | |
| 15 | def test_q_basic(): |
| 16 | q = Q(moo="cow") |
| 17 | assert q.children == () |
| 18 | assert q.filters == {"moo": "cow"} |
| 19 | assert q.join_type == "AND" |
| 20 | |
| 21 | |
| 22 | def test_q_compound(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…