summaryrefslogtreecommitdiffstats
path: root/tests/testmodule.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testmodule.py')
-rw-r--r--tests/testmodule.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/testmodule.py b/tests/testmodule.py
new file mode 100644
index 0000000..8761ecf
--- /dev/null
+++ b/tests/testmodule.py
@@ -0,0 +1,9 @@
+import gobject
+import gtk
+
+class PyLabel(gtk.Label):
+ __gtype_name__ = 'PyLabel'
+
+ def __init__(self):
+ gtk.Label.__init__(self, "hello")
+