~benji/testtools/modernize-tsfr

« back to all changes in this revision

Viewing changes to testtools/__init__.py

  • Committer: Jonathan Lange
  • Date: 2008-10-04 03:51:34 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: jml@canonical.com-20081004035134-btksf423zsyvsaxr
Rename pyunit3k to testtools.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    'TestResult',
12
12
    ]
13
13
 
14
 
from pyunit3k.interfaces import ITestResult
15
 
from pyunit3k.testcase import TestCase, clone_test_with_new_id
16
 
from pyunit3k.testresult import MultiTestResult, TestResult
17
 
from pyunit3k.utils import iterate_tests
 
14
from testtools.interfaces import ITestResult
 
15
from testtools.testcase import TestCase, clone_test_with_new_id
 
16
from testtools.testresult import MultiTestResult, TestResult
 
17
from testtools.utils import iterate_tests