aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/gi/gi-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/gi/gi-test.py')
-rw-r--r--test/gi/gi-test.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/gi/gi-test.py b/test/gi/gi-test.py
new file mode 100644
index 000000000..10cee8bc6
--- /dev/null
+++ b/test/gi/gi-test.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+from gi.repository import Gtk
+from gi.repository import Scintilla
+
+win = Gtk.Window()
+win.connect("delete-event", Gtk.main_quit)
+sci = Scintilla.Object()
+win.add(sci)
+win.show_all()
+win.resize(400,300)
+Gtk.main()