(db)
| 14 | |
| 15 | @pytest.fixture |
| 16 | def photo_fixture_snow(db): |
| 17 | from photonix.photos.utils.db import record_photo |
| 18 | snow_path = str(Path(__file__).parent / 'photos' / 'snow.jpg') |
| 19 | library = LibraryFactory() |
| 20 | return record_photo(snow_path, library) |
| 21 | |
| 22 | |
| 23 | def test_tasks_created_updated(photo_fixture_snow): |
nothing calls this directly
no test coverage detected