summaryrefslogtreecommitdiff
path: root/tests/modules/pythonplugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/pythonplugin.py')
-rw-r--r--tests/modules/pythonplugin.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/modules/pythonplugin.py b/tests/modules/pythonplugin.py
new file mode 100644
index 00000000..cb5b6a9d
--- /dev/null
+++ b/tests/modules/pythonplugin.py
@@ -0,0 +1,7 @@
+from gi.repository import Gtk
+
+class MyPythonBox(Gtk.Box):
+ __gtype_name__ = 'MyPythonBox'
+
+ def __init__ (self):
+ Gtk.Box.__init__ (self)