(self)
| 36 | |
| 37 | @pytest.fixture() |
| 38 | def cc(self): |
| 39 | # Cache controller fixture |
| 40 | return CacheController(Mock(), serializer=Mock()) |
| 41 | |
| 42 | def test_no_cache_non_20x_response(self, cc): |
| 43 | # No caching without some extra headers, so we add them |
nothing calls this directly
no test coverage detected