Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/progress.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/graphics/progress.py')
-rw-r--r--tests/graphics/progress.py20
1 files changed, 20 insertions, 0 deletions
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)