(self)
| 42 | GCSBackend(app=self.app) |
| 43 | |
| 44 | def test_missing_project(self): |
| 45 | self.app.conf.gcs_project = None |
| 46 | |
| 47 | with pytest.raises(ImproperlyConfigured, match='Missing project'): |
| 48 | GCSBackend(app=self.app) |
| 49 | |
| 50 | @patch.object(GCSBackend, '_is_firestore_ttl_policy_enabled') |
| 51 | def test_firestore_project(self, mock_firestore_ttl): |
nothing calls this directly
no test coverage detected