mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
Add library search limit test
This commit is contained in:
parent
94fb9783fe
commit
65db8c33f6
1 changed files with 2 additions and 0 deletions
|
@ -382,6 +382,8 @@ def test_library_MovieSection_advancedSearch(movies, movie):
|
|||
}
|
||||
results = movies.search(filters=advancedFilters)
|
||||
assert movie in results
|
||||
results = movies.search(limit=1)
|
||||
assert len(results) == 1
|
||||
|
||||
|
||||
def test_library_ShowSection_search(tvshows, show):
|
||||
|
|
Loading…
Reference in a new issue