~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: John Arbash Meinel
  • Date: 2007-10-26 19:15:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2982.
  • Revision ID: john@arbash-meinel.com-20071026191529-st3fn58l61g24017
Add tree implementation tests for Tree.get_root_id()

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
        """
278
278
        raise NotImplementedError(self.get_symlink_target)
279
279
 
 
280
    def get_root_id(self):
 
281
        """Return the file_id for the root of this tree."""
 
282
        raise NotImplementedError(self.get_root_id)
 
283
 
280
284
    def annotate_iter(self, file_id):
281
285
        """Return an iterator of revision_id, line tuples.
282
286