mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-05 20:51:11 -07:00
14 lines
262 B
Python
Executable file
14 lines
262 B
Python
Executable file
#! /usr/bin/env python
|
|
from __future__ import (
|
|
absolute_import,
|
|
division,
|
|
print_function,
|
|
unicode_literals,
|
|
)
|
|
|
|
import core
|
|
from core import transcoder
|
|
|
|
|
|
def test_transcoder_check():
|
|
assert transcoder.is_video_good(core.TEST_FILE, 1) is True
|