mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-30 23:15:19 -04:00
Formatting
This commit is contained in:
parent
cf770892f1
commit
abb37f17fd
25 changed files with 181 additions and 78 deletions
|
@ -3,7 +3,7 @@ import pytest
|
|||
from streamrip.metadata import Covers
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
@pytest.fixture()
|
||||
def covers_all():
|
||||
c = Covers()
|
||||
c.set_cover("original", "ourl", None)
|
||||
|
@ -14,19 +14,19 @@ def covers_all():
|
|||
return c
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
@pytest.fixture()
|
||||
def covers_none():
|
||||
return Covers()
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
@pytest.fixture()
|
||||
def covers_one():
|
||||
c = Covers()
|
||||
c.set_cover("small", "surl", None)
|
||||
return c
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
@pytest.fixture()
|
||||
def covers_some():
|
||||
c = Covers()
|
||||
c.set_cover("large", "lurl", None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue