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

  • Committer: Martin Pool
  • Date: 2007-08-14 09:44:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2722.
  • Revision ID: mbp@sourcefrog.net-20070814094420-ct7ogmwjoz528i1k
Start setting the default format to dirstate-tags

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
        self.assertIsInstance(BranchFormat.get_default_format(),
61
61
                BzrBranchFormat6)
62
62
 
 
63
    def test_default_format_is_same_as_bzrdir_default(self):
 
64
        # XXX: it might be nice if there was only one place the default was
 
65
        # set, but at the moment that's not true -- mbp 20070814 -- 
 
66
        self.assertEqual(BranchFormat.get_default_format(),
 
67
                BzrDirFormat.get_default_format().get_branch_format())
 
68
 
63
69
    def test_get_set_default_format(self):
64
70
        # set the format and then set it back again
65
71
        old_format = BranchFormat.get_default_format()