()
| 63 | |
| 64 | |
| 65 | def test_ne(): |
| 66 | query = Query().value != 1 |
| 67 | assert query({'value': 0}) |
| 68 | assert query({'value': 2}) |
| 69 | assert not query({'value': 1}) |
| 70 | assert hash(query) |
| 71 | |
| 72 | query = Query().value != [0, 1] |
| 73 | assert query({'value': [0, 1, 2]}) |
| 74 | assert not query({'value': [0, 1]}) |
| 75 | assert hash(query) |
| 76 | |
| 77 | |
| 78 | def test_lt(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…