summaryrefslogtreecommitdiffstats
path: root/tests/common.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-01-19 19:54:46 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-01-19 19:54:46 +0000
commitab1ac2f37f6ae5b195ebfb20b1895e841d59e2d7 (patch)
tree1e98c8c05b41db6afb71e059330b74cf0d800391 /tests/common.py
parent8c1524ece22446d75b9f41e34b8281179dab1bee (diff)
downloadpygobject-ab1ac2f37f6ae5b195ebfb20b1895e841d59e2d7.tar.gz
pygobject-ab1ac2f37f6ae5b195ebfb20b1895e841d59e2d7.tar.xz
pygobject-ab1ac2f37f6ae5b195ebfb20b1895e841d59e2d7.zip
Impl.
2008-01-19 Johan Dahlin <johan@gnome.org> * gio/gio.override (_wrap_g_output_stream_write): Impl. * gio/gio.override: * gio/unix.defs: Add GUnixInputStream type and methods * tests/common.py: * tests/test_gio.py: Add GIO tests. svn path=/trunk/; revision=737
Diffstat (limited to 'tests/common.py')
-rw-r--r--tests/common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/common.py b/tests/common.py
index d0ff439..8568635 100644
--- a/tests/common.py
+++ b/tests/common.py
@@ -9,6 +9,7 @@ def importModules(buildDir, srcDir):
sys.path.insert(0, srcDir)
sys.path.insert(0, buildDir)
sys.path.insert(0, os.path.join(buildDir, 'gobject'))
+ sys.path.insert(0, os.path.join(buildDir, 'gio'))
import ltihooks
# testhelper
@@ -17,6 +18,7 @@ def importModules(buildDir, srcDir):
testhelper = importModule('testhelper', '.')
gobject = importModule('gobject', buildDir, 'gobject')
+ gio = importModule('gio', buildDir, 'gio')
ltihooks.uninstall()
del ltihooks