def create_files(self): """ Create a few files to be uploaded """ f = open(os.path.join(settings.MEDIA_ROOT, "test.txt"), "w") f.write("this is a test file") f.close() f = File( name="Mango", description="Hardcore deliciousity", file="test.txt", type=FileType.VIDEO, status=FileStatus.READY, uploaded_by=self.user, tmp_path="mango", ) f.save() self.file = f a = File( name="Peach", description="Hardcore deliciousity", file="test.txt", type=FileType.VIDEO, status=FileStatus.READY, uploaded_by=self.admin, tmp_path="peach", ) a.save() self.adminfile = a
def create_files(self): """ Create files """ f = open(os.path.join(settings.MEDIA_ROOT, "test.txt"), "w") f.write("this is a test file") f.close() f = File( name="Kittens", description="Kittens and stuff", file="test.txt", type=FileType.VIDEO, status=FileStatus.READY, uploaded_by=self.user, tmp_path="kittens", ) f.save() self.file = f