mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
13 lines
269 B
Python
13 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')
|