~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-07-27 18:41:04 UTC
  • mto: (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: abentley@panoramicfeedback.com-20050727184104-79f8d0d70cb26cfc
Added patches.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
    from unittest import TestSuite, TestLoader
178
178
    import testchangeset
179
179
    import common
 
180
    import patches
180
181
 
181
182
    suite = TestSuite()
182
183
 
183
184
    suite.addTest(TestLoader().loadTestsFromModule(testchangeset))
 
185
    suite.addTest(TestLoader().loadTestsFromModule(patches))
184
186
    suite.addTest(DocTestSuite(common))
185
187
 
186
188
    return suite