Add testcase for intro window - SL #3904

Signed-off-by: Manuel Quiñones <manuq@laptop.org>
Acked-by: Simon Schampijer <simon@laptop.org>
This commit is contained in:
Manuel Quiñones 2012-09-14 17:45:39 -03:00
parent 2bedec55ed
commit 1f9684c7bf

8
tests/graphics/intro.py Normal file
View File

@ -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()