/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/selftest/test_upgrade.py

  • Committer: Martin Pool
  • Date: 2005-10-04 11:51:06 UTC
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1403.
  • Revision ID: mbp@sourcefrog.net-20051004115106-239ac37979733c3d
- upgrade carries across ghost references
- add test for this

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        b = Branch.open('.')
70
70
        revision_id = b.revision_history()[1]
71
71
        rev = b.get_revision(revision_id)
 
72
        eq(len(rev.parent_ids), 2)
 
73
        eq(rev.parent_ids[1], 'wibble@wobble-2')
72
74
 
73
75
 
74
76