diff options
author | Vitiko <[email protected]> | 2022-05-03 14:47:16 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-05-03 14:47:16 -0400 |
commit | 7423c80a28b894812b121a89f38d045f7c87d5ca (patch) | |
tree | 947f1f442bf262e0ae790bc608370951d95085f0 /tests | |
parent | 79f81e0edbcb994db1816d874a448b992b81a00f (diff) | |
download | bazarr-7423c80a28b894812b121a89f38d045f7c87d5ca.tar.gz bazarr-7423c80a28b894812b121a89f38d045f7c87d5ca.zip |
Subdivx Provider: improve language parser
Diffstat (limited to 'tests')
-rw-r--r-- | tests/subliminal_patch/conftest.py | 9 | ||||
-rw-r--r-- | tests/subliminal_patch/test_subdivx.py | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/subliminal_patch/conftest.py b/tests/subliminal_patch/conftest.py index afd2cc913..d60a807aa 100644 --- a/tests/subliminal_patch/conftest.py +++ b/tests/subliminal_patch/conftest.py @@ -126,6 +126,15 @@ def episodes(): resolution="720p", video_codec="H.264", ), + "better_call_saul_s06e04": Episode( + "Better.Call.Saul.S06E04.720p.WEBRIP.X264.mkv", + "Better Call Saul", + 6, + 4, + source="Web", + resolution="720p", + video_codec="H.264", + ), "inexistent": Episode( "Inexistent.TVShow.S01E01.720p.BluRay.X264-REWARD.mkv", "121361asdfgh", diff --git a/tests/subliminal_patch/test_subdivx.py b/tests/subliminal_patch/test_subdivx.py index 2b0a6c11f..7ce4980ce 100644 --- a/tests/subliminal_patch/test_subdivx.py +++ b/tests/subliminal_patch/test_subdivx.py @@ -27,6 +27,12 @@ def test_list_subtitles_episode(episodes, episode_key, expected): assert len(subtitles) >= expected +def test_list_subtitles_castillian_spanish(episodes): + item = episodes["better_call_saul_s06e04"] + with SubdivxSubtitlesProvider() as provider: + assert provider.list_subtitles(item, {Language.fromietf("es")}) + + def test_download_subtitle(movies): subtitle = SubdivxSubtitle( Language("spa", "MX"), |