testsuite/test_event.py: Properly use tempfile

Original commit message from CVS:
* testsuite/test_event.py:
Properly use tempfile
This commit is contained in:
Edward Hervey 2006-02-01 16:37:41 +00:00
parent 0ce8abe73d
commit a21b83f5f5
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2006-02-01 Edward Hervey <edward@fluendo.com>
* testsuite/test_event.py:
Properly use tempfile
2006-02-01 Edward Hervey <edward@fluendo.com>
* gst/gst.defs:

View file

@ -23,6 +23,7 @@
import os
import sys
import time
import tempfile
from common import gst, unittest, testhelper, TestCase
@ -71,13 +72,11 @@ class EventTest(TestCase):
class EventFileSrcTest(TestCase):
# FIXME: properly create temp files
filename = '/tmp/gst-python-test-file'
def setUp(self):
TestCase.setUp(self)
gst.info("start")
if os.path.exists(self.filename):
os.remove(self.filename)
self.filename = tempfile.mktemp()
open(self.filename, 'w').write(''.join(map(str, range(10))))
self.pipeline = gst.parse_launch('filesrc name=source location=%s blocksize=1 ! fakesink signal-handoffs=1 name=sink' % self.filename)