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

  • Committer: Martin Pool
  • Date: 2008-05-22 05:48:22 UTC
  • mfrom: (3407.2.16 controlfiles)
  • mto: This revision was merged to the branch mainline in revision 3448.
  • Revision ID: mbp@sourcefrog.net-20080522054822-lrq17tx62wbfzj8r
merge further LockableFile deprecations

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        b = branch.Branch.open('b')
46
46
        self.run_bzr('branch a c -r 1')
47
47
        # previously was erroneously created by branching
48
 
        self.assertFalse(b.control_files._transport.has('branch-name'))
 
48
        self.assertFalse(b._transport.has('branch-name'))
49
49
        b.bzrdir.open_workingtree().commit(message='foo', allow_pointless=True)
50
50
 
51
51
    def test_branch_only_copies_history(self):