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