(self)
| 110 | |
| 111 | @pytest.fixture |
| 112 | def sha1_fixture(self): |
| 113 | blob = b"blobish" |
| 114 | video = Video(blob, None, None) |
| 115 | expected_value = "de731a6eed12f427642325193b8e57af3c624d62" |
| 116 | return video, expected_value |
| 117 | |
| 118 | # fixture components --------------------------------------------- |
| 119 |