()
| 99 | |
| 100 | |
| 101 | def test_ge(): |
| 102 | query = Query().value >= 1 |
| 103 | assert query({'value': 2}) |
| 104 | assert query({'value': 1}) |
| 105 | assert not query({'value': 0}) |
| 106 | assert hash(query) |
| 107 | |
| 108 | |
| 109 | def test_or(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…