gstreamer/testsuite/common.py
Johan Dahlin 8a810ece62 Add some tests
Original commit message from CVS:
Add some tests
2004-03-08 19:22:15 +00:00

12 lines
269 B
Python

#
import os
import sys
import unittest
sys.path.insert(0, '..')
# Load GST and make sure we load it from the current build
import gst
assert sys.modules.has_key('_gst')
assert os.path.basename(sys.modules['_gst'].__file__), \
os.path.join('..', 'gst', 'libs')