Empty constraints still returns VectorFilter (never None).
| 74 | |
| 75 | |
| 76 | class TestTargetingEngineEmptyConstraints: |
| 77 | """Empty constraints still returns VectorFilter (never None).""" |
| 78 | |
| 79 | def test_empty_constraints_returns_vector_filter(self): |
| 80 | vf = _build_filter() |
| 81 | assert isinstance(vf, VectorFilter) |
| 82 | assert vf.must == [] |
| 83 | assert vf.must_not == [] |
nothing calls this directly
no outgoing calls
no test coverage detected