mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 18:35:35 +00:00
8a810ece62
Original commit message from CVS: Add some tests
12 lines
269 B
Python
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')
|