~jelmer/bzr-git/705807-dpush

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-02 18:08:31 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: jelmer@samba.org-20070202180831-a0owuofc45bmuoch
Add very small initial testsuite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
450
450
            if name.startswith('"'):
451
451
                name = name[1:-1].decode('string_escape').decode('utf-8')
452
452
            yield (sections[0], sections[1], obj_id, name)
 
453
 
 
454
def test_suite():
 
455
    from unittest import TestSuite, TestLoader
 
456
    import tests
 
457
 
 
458
    suite = TestSuite()
 
459
 
 
460
    suite.addTest(tests.test_suite())
 
461
 
 
462
    return suite