(self)
| 8 | |
| 9 | class TestQueryFieldList: |
| 10 | def test_empty(self): |
| 11 | q = QueryFieldList() |
| 12 | assert not q |
| 13 | |
| 14 | q = QueryFieldList(always_include=["_cls"]) |
| 15 | assert not q |
| 16 | |
| 17 | def test_include_include(self): |
| 18 | q = QueryFieldList() |
nothing calls this directly
no test coverage detected