mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-14 07:57:09 +00:00
21 lines
563 B
Python
21 lines
563 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def test_mark_movie_watched(movie):
|
|
movie.markUnwatched()
|
|
print('Marking movie watched: %s' % movie)
|
|
print('View count: %s' % movie.viewCount)
|
|
movie.markWatched()
|
|
print('View count: %s' % movie.viewCount)
|
|
assert movie.viewCount == 1, 'View count 0 after watched.'
|
|
movie.markUnwatched()
|
|
print('View count: %s' % movie.viewCount)
|
|
assert movie.viewCount == 0, 'View count 1 after unwatched.'
|
|
|
|
|
|
def test_refresh_section(tvshows):
|
|
tvshows.refresh()
|
|
|
|
|
|
def test_refresh_video(movie):
|
|
movie.refresh()
|