/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-01 15:50:40 UTC
  • Revision ID: jelmer@samba.org-20070201155040-3hq4mfbxs99kzazy
add framework for tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
316
316
    def __str__(self):
317
317
        return "No DISPLAY. Unable to run GTK+ application."
318
318
 
 
319
def test_suite():
 
320
    from unittest import TestSuite
 
321
    import tests
 
322
    result = TestSuite()
 
323
    result.addTest(tests.test_suite())
 
324
    return result
319
325