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

  • Committer: Aaron Bentley
  • Date: 2007-12-17 19:27:35 UTC
  • mto: This revision was merged to the branch mainline in revision 3128.
  • Revision ID: abentley@panoramicfeedback.com-20071217192735-h4gok4fpvl6ppis0
Update tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
    def test_split(self):
29
29
        self.build_tree(['a/', 'a/b/', 'a/b/c'])
30
 
        wt = self.make_branch_and_tree('a')
 
30
        wt = self.make_branch_and_tree('a', format='rich-root-pack')
31
31
        wt.add(['b', 'b/c'])
32
32
        wt.commit('rev1')
33
33
        self.run_bzr('split a/b')
59
59
        self.assertIsInstance(subtree.branch.repository._format,
60
60
                              repo_format)
61
61
 
62
 
    def test_split_non_rich_root(self):
63
 
        self.split_formats('dirstate-tags', RepositoryFormatKnit4)
64
 
 
65
62
    def test_split_rich_root(self):
66
63
        self.split_formats('rich-root', RepositoryFormatKnit4)
67
64