~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_branch.py

  • Committer: Aaron Bentley
  • Date: 2007-01-26 04:00:12 UTC
  • mfrom: (2245 +trunk)
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20070126040012-j80k7qhvj80dyp9j
merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        self.assertEquals(br.revision_history(), ["rev1",])
88
88
        br.append_revision("rev2", "rev3")
89
89
        self.assertEquals(br.revision_history(), ["rev1", "rev2", "rev3"])
 
90
        self.assertRaises(errors.ReservedId, br.append_revision, 'current:')
90
91
 
91
92
    def test_fetch_revisions(self):
92
93
        """Test fetch-revision operation."""