/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: Martin Pool
  • Date: 2009-03-13 07:54:48 UTC
  • mfrom: (4144 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4189.
  • Revision ID: mbp@sourcefrog.net-20090313075448-jlz1t7baz7gzipqn
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Black-box tests for bzr.
19
19
 
20
20
These check that it behaves properly when it's invoked through the regular
21
 
command-line interface. This doesn't actually run a new interpreter but 
 
21
command-line interface. This doesn't actually run a new interpreter but
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',
66
57
                     'bzrlib.tests.blackbox.test_exceptions',
67
58
                     'bzrlib.tests.blackbox.test_export',
68
59
                     'bzrlib.tests.blackbox.test_filesystem_cicp',
 
60
                     'bzrlib.tests.blackbox.test_filtered_view_ops',
69
61
                     'bzrlib.tests.blackbox.test_find_merge_base',
70
62
                     'bzrlib.tests.blackbox.test_help',
71
63
                     'bzrlib.tests.blackbox.test_hooks',
86
78
                     'bzrlib.tests.blackbox.test_modified',
87
79
                     'bzrlib.tests.blackbox.test_mv',
88
80
                     'bzrlib.tests.blackbox.test_nick',
 
81
                     'bzrlib.tests.blackbox.test_non_ascii',
89
82
                     'bzrlib.tests.blackbox.test_outside_wt',
90
83
                     'bzrlib.tests.blackbox.test_pack',
91
84
                     'bzrlib.tests.blackbox.test_pull',
119
112
                     'bzrlib.tests.blackbox.test_version',
120
113
                     'bzrlib.tests.blackbox.test_version_info',
121
114
                     'bzrlib.tests.blackbox.test_versioning',
 
115
                     'bzrlib.tests.blackbox.test_view',
122
116
                     'bzrlib.tests.blackbox.test_whoami',
123
117
                     ]
124
118
    # add the tests for the sub modules
125
119
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))
126
 
 
127
 
    test_encodings = [
128
 
        'bzrlib.tests.blackbox.test_non_ascii',
129
 
    ]
130
 
 
131
 
    adapter = EncodingTestAdapter()
132
 
    adapt_modules(test_encodings, adapter, loader, suite)
133
 
 
134
120
    return suite
135
121
 
136
122