mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-06 05:01:10 -07:00
9 lines
196 B
Python
Executable file
9 lines
196 B
Python
Executable file
#! /usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
import core
|
|
from core import transcoder
|
|
|
|
|
|
def test_transcoder_check():
|
|
assert transcoder.is_video_good(core.TEST_FILE, 0) is True
|