(db)
| 18 | |
| 19 | @pytest.fixture |
| 20 | def photo_fixture_tree(db): |
| 21 | from photonix.photos.utils.db import record_photo |
| 22 | tree_path = str(Path(__file__).parent / 'photos' / 'tree.jpg') |
| 23 | library = LibraryFactory() |
| 24 | return record_photo(tree_path, library) |
| 25 | |
| 26 | |
| 27 | def test_color_via_runner(photo_fixture_snow): |
nothing calls this directly
no test coverage detected