diff options
author | morpheus65535 <[email protected]> | 2023-05-09 21:26:09 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-05-09 21:26:09 -0400 |
commit | 58868cff170be5dd8c19530bb5ca63415d857c9a (patch) | |
tree | 509159ec0ca46f4380c109791afe303bc8af40e8 /tests | |
parent | 2b5cd2b72e19469b545e4d35e2564d5219a36e7c (diff) | |
parent | 5f9418b1f3eae5b1acb5f8c4ecbd835726c6f63f (diff) | |
download | bazarr-58868cff170be5dd8c19530bb5ca63415d857c9a.tar.gz bazarr-58868cff170be5dd8c19530bb5ca63415d857c9a.zip |
Merge remote-tracking branch 'origin/development' into developmentv1.2.2-beta.3
Diffstat (limited to 'tests')
-rw-r--r-- | tests/subliminal_patch/test_subdivx.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/subliminal_patch/test_subdivx.py b/tests/subliminal_patch/test_subdivx.py index 96342075c..33f938766 100644 --- a/tests/subliminal_patch/test_subdivx.py +++ b/tests/subliminal_patch/test_subdivx.py @@ -74,6 +74,19 @@ def test_list_subtitles_episode_with_title_only_fallback(episodes): subtitles = provider.list_subtitles(item, {Language("spa", "MX")}) assert len(subtitles) > 2 +def test_list_subtitles_episode_with_episode_title_fallback(episodes): + item = list(episodes.values())[0] + item.series = "30 for 30" + item.title = "The Two Escobars" + item.season = 1 + item.episode = 16 + + with SubdivxSubtitlesProvider() as provider: + sub = provider.list_subtitles(item, {Language("spa", "MX")})[0] + assert sub.get_matches(item) + provider.download_subtitle(sub) + assert sub.is_valid() + def test_download_subtitle(movies): subtitle = SubdivxSubtitle( |