Commit c469a83b authored by Gabriel Monnerat's avatar Gabriel Monnerat

pass env attributes to object

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@43792 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2a8b20f3
......@@ -35,7 +35,8 @@ class TestFFMPEGHandler(HandlerTestCase):
def afterSetUp(self):
self.data = open("./data/test.ogv").read()
self.input = FFMPEGHandler(self.tmp_url, self.data, "ogv")
kw = dict(env=dict(PATH=self.env_path))
self.input = FFMPEGHandler(self.tmp_url, self.data, "ogv", **kw)
def testConvertVideo(self):
"""Test coversion of video to another format"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment