Context for IntFields model resolution.
(db)
| 136 | |
| 137 | @pytest.fixture |
| 138 | def int_fields_context(db): |
| 139 | """Context for IntFields model resolution.""" |
| 140 | return ResolveContext( |
| 141 | model=IntFields, |
| 142 | table=IntFields._meta.basequery, |
| 143 | annotations={}, |
| 144 | custom_filters={}, |
| 145 | ) |
| 146 | |
| 147 | |
| 148 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…