~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Robert Collins
  • Date: 2007-12-18 07:36:44 UTC
  • mto: (3128.1.1 param_tests)
  • mto: This revision was merged to the branch mainline in revision 3129.
  • Revision ID: robertc@robertcollins.net-20071218073644-1npofqduijg8tkie
Push the message editor test parameterisation down into the message editor
tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
                          TestSuite,
99
99
                          TestLoader,
100
100
                          )
101
 
from bzrlib.tests.EncodingAdapter import EncodingTestAdapter
102
101
from bzrlib.tests.treeshape import build_tree_contents
103
102
import bzrlib.version_info_formats.format_custom
104
103
from bzrlib.workingtree import WorkingTree, WorkingTreeFormat2
2677
2676
    from bzrlib.tests.test_transport_implementations import TransportTestProviderAdapter
2678
2677
    adapter = TransportTestProviderAdapter()
2679
2678
    adapt_modules(test_transport_implementations, adapter, loader, suite)
2680
 
    adapt_tests(
2681
 
        ["bzrlib.tests.test_msgeditor.MsgEditorTest."
2682
 
         "test__create_temp_file_with_commit_template_in_unicode_dir"],
2683
 
        EncodingTestAdapter(), loader, suite)
2684
2679
    for package in packages_to_test():
2685
2680
        suite.addTest(package.test_suite())
2686
2681
    for m in MODULES_TO_TEST: