mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
Add test for partial reload with disabled include
This commit is contained in:
parent
a12f8b09e5
commit
82a9fce665
1 changed files with 2 additions and 0 deletions
|
@ -66,6 +66,8 @@ def test_video_Movie_getStreamURL(movie, account):
|
|||
def test_video_Movie_isFullObject_and_reload(plex):
|
||||
movie = plex.library.section("Movies").get("Sita Sings the Blues")
|
||||
assert movie.isFullObject() is False
|
||||
movie.reload(checkFiles=False)
|
||||
assert movie.isFullObject() is False
|
||||
movie.reload()
|
||||
assert movie.isFullObject() is True
|
||||
movie_via_search = plex.library.search(movie.title)[0]
|
||||
|
|
Loading…
Reference in a new issue