Files
picard/test/formats/test_midi.py
Philipp Wolfer d304e30dc2 PICARD-1594: Set ~video variable on file loading based on extension
This does not give a 100% coverage of detecting files which include video, but at least those files are supposed to be video files.
2019-09-11 08:49:00 +02:00

10 lines
198 B
Python

from .common import CommonTests
class MIDITest(CommonTests.SimpleFormatsTestCase):
testfile = 'test.mid'
expected_info = {
'length': 127997,
}
unexpected_info = ['~video']