From 7931e104f476c3ad40075fb374125c152fbd1dc8 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Mon, 03 Dec 2012 14:44:53 +0000 Subject: Add Gtk.ProgressBar testcase. Signed-off-by: Manuel QuiƱones --- diff --git a/tests/graphics/progress.py b/tests/graphics/progress.py new file mode 100644 index 0000000..bc176a8 --- /dev/null +++ b/tests/graphics/progress.py @@ -0,0 +1,20 @@ +from gi.repository import Gtk + +import common + + +test = common.Test() +test.show() + +box = Gtk.HBox() +test.pack_start(box, True, False, 10) +box.show() + +bar = Gtk.ProgressBar() +bar.set_fraction(0.5) +box.pack_start(bar, True, True, 10) +bar.show() + + +if __name__ == '__main__': + common.main(test) -- cgit v0.9.1