()
| 44 | |
| 45 | @pytest.fixture(scope="module") |
| 46 | def live_photo(): |
| 47 | return LivePhoto( |
| 48 | file_id=LivePhotoTestBase.file_id, |
| 49 | file_unique_id=LivePhotoTestBase.file_unique_id, |
| 50 | width=LivePhotoTestBase.width, |
| 51 | height=LivePhotoTestBase.height, |
| 52 | duration=LivePhotoTestBase.duration, |
| 53 | photo=LivePhotoTestBase.photo, |
| 54 | mime_type=LivePhotoTestBase.mime_type, |
| 55 | file_size=LivePhotoTestBase.file_size, |
| 56 | ) |
| 57 | |
| 58 | |
| 59 | class LivePhotoTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…