/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 breezy/tests/blackbox/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
These check that it behaves properly when it's invoked through the regular
21
21
command-line interface. This doesn't actually run a new interpreter but
22
 
rather starts again from the run_bzr function.
 
22
rather starts again from the run_brz function.
23
23
"""
24
24
 
25
25
 
26
 
from bzrlib.symbol_versioning import (
 
26
from breezy.symbol_versioning import (
27
27
    deprecated_in,
28
28
    deprecated_method,
29
29
    )
30
 
from bzrlib import tests
 
30
from breezy import tests
31
31
 
32
32
 
33
33
def load_tests(basic_tests, module, loader):
35
35
    # add the tests for this module
36
36
    suite.addTests(basic_tests)
37
37
 
38
 
    prefix = 'bzrlib.tests.blackbox.'
 
38
    prefix = 'breezy.tests.blackbox.'
39
39
    testmod_names = [
40
40
                     'test_add',
41
41
                     'test_added',
146
146
 
147
147
    @deprecated_method(deprecated_in((2, 2, 0)))
148
148
    def check_output(self, output, *args):
149
 
        """Verify that the expected output matches what bzr says.
 
149
        """Verify that the expected output matches what brz says.
150
150
 
151
151
        The output is supplied first, so that you can supply a variable
152
152
        number of arguments to bzr.