/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/test_split.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-17 17:17:02 UTC
  • mto: This revision was merged to the branch mainline in revision 7187.
  • Revision ID: jelmer@jelmer.uk-20181117171702-4tm0yznbaw3rq3es
More beees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
 
import os
19
 
 
20
 
from bzrlib import bzrdir, tests, workingtree
21
 
from bzrlib.repofmt.knitrepo import RepositoryFormatKnit4
22
 
from bzrlib.repofmt.pack_repo import RepositoryFormatKnitPack4
23
 
 
 
18
from breezy import tests, workingtree
 
19
from breezy.bzr.knitrepo import RepositoryFormatKnit4
 
20
from breezy.bzr.knitpack_repo import RepositoryFormatKnitPack4
24
21
 
25
22
 
26
23
class TestSplit(tests.TestCaseWithTransport):
31
28
        wt.add(['b', 'b/c'])
32
29
        wt.commit('rev1')
33
30
        self.run_bzr('split a/b')
34
 
        self.run_bzr_error(('.* is not versioned',), 'split q', working_dir='a')
 
31
        self.run_bzr_error(('.* is not versioned',),
 
32
                           'split q', working_dir='a')
35
33
 
36
34
    def test_split_repo_failure(self):
37
35
        repo = self.make_repository('branch', shared=True, format='knit')
38
 
        a_branch = repo.bzrdir.create_branch()
 
36
        a_branch = repo.controldir.create_branch()
39
37
        self.build_tree(['a/', 'a/b/', 'a/b/c/', 'a/b/c/d'])
40
38
        wt = a_branch.create_checkout('a', lightweight=True)
41
 
        wt.add(['b', 'b/c', 'b/c/d'], ['b-id', 'c-id', 'd-id'])
 
39
        wt.add(['b', 'b/c', 'b/c/d'], [b'b-id', b'c-id', b'd-id'])
42
40
        wt.commit('added files')
43
41
        self.run_bzr_error(('must upgrade your branch at .*a',), 'split a/b')
44
42
 
47
45
        self.build_tree(['tree/subtree/'])
48
46
        tree.add('subtree')
49
47
        tree.commit('added subtree')
50
 
        self.run_bzr_error(('must upgrade your branch at .*tree','rich roots'),
 
48
        self.run_bzr_error(('must upgrade your branch at .*tree', 'rich roots'),
51
49
                           'split tree/subtree')
52
50
 
53
51
    def split_formats(self, format, repo_format):