Tests loading an artifact when none exists.
(service_type, artifact_service_factory)
| 195 | ], |
| 196 | ) |
| 197 | async def test_load_empty(service_type, artifact_service_factory): |
| 198 | """Tests loading an artifact when none exists.""" |
| 199 | artifact_service = artifact_service_factory(service_type) |
| 200 | assert not await artifact_service.load_artifact( |
| 201 | app_name="test_app", |
| 202 | user_id="test_user", |
| 203 | session_id="session_id", |
| 204 | filename="filename", |
| 205 | ) |
| 206 | |
| 207 | |
| 208 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected