mirror of
https://github.com/pkkid/python-plexapi
synced 2025-02-16 12:58:26 +00:00
test name update
This commit is contained in:
parent
df546046d8
commit
1d5d119d4c
1 changed files with 6 additions and 6 deletions
|
@ -202,37 +202,37 @@ def test_library_and_section_search_for_movie(plex):
|
|||
assert l_search == s_search
|
||||
|
||||
|
||||
def test_library_colletion_hide(collection):
|
||||
def test_library_Colletions_modeUpdate_hide(collection):
|
||||
collection.modeUpdate(mode='hide')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '0'
|
||||
|
||||
|
||||
def test_library_colletion_default(collection):
|
||||
def test_library_Colletions_modeUpdate_default(collection):
|
||||
collection.modeUpdate(mode='default')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '-2'
|
||||
|
||||
|
||||
def test_library_colletion_hideItems(collection):
|
||||
def test_library_Colletions_modeUpdate_hideItems(collection):
|
||||
collection.modeUpdate(mode='hideItems')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '1'
|
||||
|
||||
|
||||
def test_library_colletion_showItems(collection):
|
||||
def test_library_Colletions_modeUpdate_showItems(collection):
|
||||
collection.modeUpdate(mode='showItems')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '2'
|
||||
|
||||
|
||||
def test_library_colletion_sortAlpha(collection):
|
||||
def test_library_Colletions_sortAlpha(collection):
|
||||
collection.sortUpdate(mode='alpha')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '1'
|
||||
|
||||
|
||||
def test_library_colletion_sortRelease(collection):
|
||||
def test_library_Colletions_sortRelease(collection):
|
||||
collection.sortUpdate(mode='release')
|
||||
collection.reload()
|
||||
assert collection.collectionMode == '0'
|
||||
|
|
Loading…
Add table
Reference in a new issue