mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-23 04:03:05 +00:00
Merge pull request #805 from JonnyWong16/feature/playlist_poster
Add test for changing Playlist poster
This commit is contained in:
commit
7233f5fd3e
1 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,7 @@ import pytest
|
|||
from plexapi.exceptions import BadRequest, NotFound, Unsupported
|
||||
|
||||
from . import conftest as utils
|
||||
from . import test_mixins
|
||||
|
||||
|
||||
def test_Playlist_attrs(playlist):
|
||||
|
@ -255,3 +256,8 @@ def test_Playlist_exceptions(plex, movies, movie, artist):
|
|||
playlist.moveItem(movie)
|
||||
finally:
|
||||
playlist.delete()
|
||||
|
||||
|
||||
def test_Playlist_mixins_images(playlist):
|
||||
#test_mixins.edit_art(playlist)
|
||||
test_mixins.edit_poster(playlist)
|
||||
|
|
Loading…
Reference in a new issue