import os from django.core.files import File import tests def create_test_video_file(): video_file = open(os.path.join(tests.__path__[0], 'small.mp4'), 'rb') return File(video_file, name='small.mp4') def create_test_vtt_file(): vtt_file = open(os.path.join(tests.__path__[0], 'small.vtt'), 'rb') return File(vtt_file, name='small.vtt')