/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-03-12 14:02:53 UTC
  • mfrom: (4135 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4137.
  • Revision ID: jelmer@samba.org-20090312140253-bmldbzlmsitfdrzf
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
rather starts again from the run_bzr function.
23
23
"""
24
24
 
25
 
import sys
26
25
 
27
 
from bzrlib.tests import (
28
 
                          adapt_modules,
29
 
                          TestCaseWithTransport,
30
 
                          iter_suite_tests,
31
 
                          )
32
 
from bzrlib.tests.EncodingAdapter import EncodingTestAdapter
33
 
from bzrlib.symbol_versioning import (
34
 
    deprecated_method,
35
 
    )
36
 
import bzrlib.ui as ui
 
26
from bzrlib.tests import TestCaseWithTransport
37
27
 
38
28
 
39
29
def load_tests(basic_tests, module, loader):
57
47
                     'bzrlib.tests.blackbox.test_cat_revision',
58
48
                     'bzrlib.tests.blackbox.test_check',
59
49
                     'bzrlib.tests.blackbox.test_checkout',
 
50
                     'bzrlib.tests.blackbox.test_clean_tree',
60
51
                     'bzrlib.tests.blackbox.test_command_encoding',
61
52
                     'bzrlib.tests.blackbox.test_commit',
62
53
                     'bzrlib.tests.blackbox.test_conflicts',
87
78
                     'bzrlib.tests.blackbox.test_modified',
88
79
                     'bzrlib.tests.blackbox.test_mv',
89
80
                     'bzrlib.tests.blackbox.test_nick',
 
81
                     'bzrlib.tests.blackbox.test_non_ascii',
90
82
                     'bzrlib.tests.blackbox.test_outside_wt',
91
83
                     'bzrlib.tests.blackbox.test_pack',
92
84
                     'bzrlib.tests.blackbox.test_pull',
125
117
                     ]
126
118
    # add the tests for the sub modules
127
119
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))
128
 
 
129
 
    test_encodings = [
130
 
        'bzrlib.tests.blackbox.test_non_ascii',
131
 
    ]
132
 
 
133
 
    adapter = EncodingTestAdapter()
134
 
    adapt_modules(test_encodings, adapter, loader, suite)
135
 
 
136
120
    return suite
137
121
 
138
122