Skip to content

Commit

Permalink
get_saved_episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed Jan 21, 2024
1 parent a3e4c26 commit bb7a51e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/mixins/test_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ def test_get_liked_songs(self, yt_brand, yt_empty):
songs = yt_empty.get_liked_songs()
assert songs["trackCount"] == 0

def test_get_saved_episodes(self, yt_brand, yt_empty):
episodes = yt_brand.get_saved_episodes(200)
assert len(episodes["tracks"]) > 0
episodes = yt_empty.get_saved_episodes()
assert episodes["trackCount"] == 0

def test_get_history(self, yt_oauth):
songs = yt_oauth.get_history()
assert len(songs) > 0
Expand Down

0 comments on commit bb7a51e

Please sign in to comment.