(self)
| 36 | GCSBackend(app=self.app) |
| 37 | |
| 38 | def test_missing_bucket(self): |
| 39 | self.app.conf.gcs_bucket = None |
| 40 | |
| 41 | with pytest.raises(ImproperlyConfigured, match='Missing bucket name'): |
| 42 | GCSBackend(app=self.app) |
| 43 | |
| 44 | def test_missing_project(self): |
| 45 | self.app.conf.gcs_project = None |
nothing calls this directly
no test coverage detected