(self)
| 122 | self.tb.process_cleanup() |
| 123 | |
| 124 | def test_expires_as_int(self): |
| 125 | tb = CacheBackend(backend='memory://', expires=10, app=self.app) |
| 126 | assert tb.expires == 10 |
| 127 | |
| 128 | def test_unknown_backend_raises_ImproperlyConfigured(self): |
| 129 | with pytest.raises(ImproperlyConfigured): |
nothing calls this directly
no test coverage detected