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

  • Committer: John Arbash Meinel
  • Date: 2007-02-17 02:33:45 UTC
  • mto: This revision was merged to the branch mainline in revision 2294.
  • Revision ID: john@arbash-meinel.com-20070217023345-vhrz7igv9q7kd762
Track through the new Branch6 code, and make sure revision ids are utf8

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        last = br.last_revision()
112
112
        self.assertEqual('rev3', last)
113
113
        self.assertIsInstance(last, str)
 
114
        revno, last = br.last_revision_info()
 
115
        self.assertEqual(3, revno)
 
116
        self.assertEqual('rev3', last)
 
117
        self.assertIsInstance(last, str)
114
118
 
115
119
    def test_fetch_revisions(self):
116
120
        """Test fetch-revision operation."""