mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 08:17:42 +08:00
09d1eb78c9
This removes unused code from subliminal_patch's core. Thanks to refining, we don't need extra magic to guess from filenames anymore.
19 lines
503 B
Python
19 lines
503 B
Python
from pathlib import Path
|
|
|
|
from subliminal_patch import core
|
|
|
|
|
|
def test_scan_video_movie(tmpdir):
|
|
video_path = Path(tmpdir, "Taxi Driver 1976 Bluray 720p x264.mkv")
|
|
video_path.touch()
|
|
|
|
result = core.scan_video(str(video_path))
|
|
assert isinstance(result, core.Movie)
|
|
|
|
|
|
def test_scan_video_episode(tmpdir):
|
|
video_path = Path(tmpdir, "The Wire S01E01 Bluray 720p x264.mkv")
|
|
video_path.touch()
|
|
|
|
result = core.scan_video(str(video_path))
|
|
assert isinstance(result, core.Episode)
|