Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-09-14 20:45:39 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-09-20 12:56:02 (GMT)
commit1f9684c7bf7118dd3ca41b9615a65fa42131c0e1 (patch)
tree170b4594fa76d4e085166c4794484791e2f8872f
parent2bedec55edb9be8ee27596f00468bde3de6fd46f (diff)
Add testcase for intro window - SL #3904
Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
-rw-r--r--tests/graphics/intro.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/graphics/intro.py b/tests/graphics/intro.py
new file mode 100644
index 0000000..05c5b5a
--- /dev/null
+++ b/tests/graphics/intro.py
@@ -0,0 +1,8 @@
+from gi.repository import Gtk
+from common import set_theme
+from jarabe.intro.window import IntroWindow
+
+set_theme()
+win = IntroWindow()
+win.show_all()
+Gtk.main()