You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
866 B
30 lines
866 B
2 years ago
|
from subliminal_patch import subtitle
|
||
|
|
||
|
|
||
|
def test_guess_matches_w_edition_only_video(movies):
|
||
|
movie = movies["dune"]
|
||
|
movie.edition = "Director's Cut"
|
||
|
matches = subtitle.guess_matches(movie, {})
|
||
|
assert "edition" not in matches
|
||
|
|
||
|
|
||
|
def test_guess_matches_w_edition_only_guess(movies):
|
||
|
movie = movies["dune"]
|
||
|
movie.edition = None
|
||
|
matches = subtitle.guess_matches(movie, {"edition": "Director's Cut"})
|
||
|
assert "edition" not in matches
|
||
|
|
||
|
|
||
|
def test_guess_matches_w_edition_both(movies):
|
||
|
movie = movies["dune"]
|
||
|
movie.edition = "Director's Cut"
|
||
|
matches = subtitle.guess_matches(movie, {"edition": "Director's Cut"})
|
||
|
assert "edition" in matches
|
||
|
|
||
|
|
||
|
def test_guess_matches_w_edition_both_empty(movies):
|
||
|
movie = movies["dune"]
|
||
|
movie.edition = None
|
||
|
matches = subtitle.guess_matches(movie, {})
|
||
|
assert "edition" in matches
|