Context for CharFields model resolution.
(db)
| 147 | |
| 148 | @pytest.fixture |
| 149 | def char_fields_context(db): |
| 150 | """Context for CharFields model resolution.""" |
| 151 | return ResolveContext( |
| 152 | model=CharFields, |
| 153 | table=CharFields._meta.basequery, |
| 154 | annotations={}, |
| 155 | custom_filters={}, |
| 156 | ) |
| 157 | |
| 158 | |
| 159 | def test_q_call_basic(int_fields_context): |
nothing calls this directly
no test coverage detected
searching dependent graphs…