From 1f9684c7bf7118dd3ca41b9615a65fa42131c0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= Date: Fri, 14 Sep 2012 17:45:39 -0300 Subject: [PATCH] Add testcase for intro window - SL #3904 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- tests/graphics/intro.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/graphics/intro.py diff --git a/tests/graphics/intro.py b/tests/graphics/intro.py new file mode 100644 index 00000000..05c5b5a6 --- /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()