/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/commands/test_init_repository.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-10-13 18:52:37 UTC
  • mfrom: (7385.2.3 init-shared-repo)
  • Revision ID: breezy.the.bot@gmail.com-20191013185237-dysn3in6iw908mse
Rename init-repo to init-shared-repo.

Merged from https://code.launchpad.net/~jelmer/brz/init-shared-repo/+merge/372116

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from ...builtins import cmd_init_repository
 
17
from ...builtins import cmd_init_shared_repository
18
18
from .. import (
19
19
    transport_util,
20
20
    ui_testing,
27
27
        super(TestInitRepository, self).setUp()
28
28
        self.start_logging_connections()
29
29
 
30
 
    def test_init_repository(self):
31
 
        cmd = cmd_init_repository()
 
30
    def test_init_shared_repository(self):
 
31
        cmd = cmd_init_shared_repository()
32
32
        # We don't care about the ouput but 'outf' should be defined
33
33
        cmd.outf = ui_testing.StringIOWithEncoding()
34
34
        cmd.run(self.get_url())