[gegl] test-gegl.py: ensure tests run in the correct order
- From: Daniel Sabo <daniels src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] test-gegl.py: ensure tests run in the correct order
- Date: Sun, 9 Jun 2013 08:52:07 +0000 (UTC)
commit ef68cf382ea43e6db79e5b371f9b61868e241c47
Author: Daniel Sabo <DanielSabo gmail com>
Date: Sat Jun 8 14:52:22 2013 -0700
test-gegl.py: ensure tests run in the correct order
tests/python/test-gegl.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/tests/python/test-gegl.py b/tests/python/test-gegl.py
index d3d0b42..6bce1f0 100755
--- a/tests/python/test-gegl.py
+++ b/tests/python/test-gegl.py
@@ -24,17 +24,17 @@ from gi.repository import Gegl
class TestGegl(unittest.TestCase):
"""Tests the Gegl global functions, initialization and configuration handling."""
- def test_init(self):
+ def test_100_init(self):
Gegl.init(None);
- def test_config_defaults(self):
+ def test_200_config_defaults(self):
gegl_config = Gegl.config()
# Some default that are unlikely to change
self.assertEqual(gegl_config.props.quality, 1.0)
self.assertEqual(gegl_config.get_property('tile-width'), 128)
self.assertEqual(gegl_config.get_property('tile-height'), 64)
- def test_exit(self):
+ def test_300_exit(self):
Gegl.exit()
if __name__ == '__main__':
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]