| author | Justin Bronn <jbronn@geodjango.org> |
| Sat Jan 31 15:18:50 2009 -0600 (3 years ago) | |
| branch | trunk |
| changeset 138 | 466bece04a15 |
| parent 1 | 911c7e1d6ffe |
| child 352 | ed67864049e9 |
| permissions | -rw-r--r-- |
1 """
2 GEOS Testing module.
3 """
4 from unittest import TestSuite, TextTestRunner
6 import test_geos, test_mutability
8 test_suites = [test_geos.suite(),
9 test_mutability.suite(),
10 ]
12 def suite():
13 s = TestSuite()
14 map(s.addTest, test_suites)
15 return s
17 def run(verbosity=1):
18 TextTestRunner(verbosity=verbosity).run(suite())