~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-27 07:35:19 UTC
  • mfrom: (3709.5.10 smart-push-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20081027073519-qy22jw3pt00k4u2w
Reduce round-trips when pushing to an existing repo by using the
        get_parent_map RPC more,
        and batching calls to it in _walk_to_common_revisions. (Andrew
        Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
478
478
    def supports_rich_root(self):
479
479
        return False
480
480
 
 
481
    def get_graph(self):
 
482
        raise NotImplementedError
 
483
 
 
484
    def get_parent_map(self, revision_ids):
 
485
        raise NotImplementedError
 
486
 
481
487
 
482
488
class InterDummy(repository.InterRepository):
483
489
    """An inter-repository optimised code path for DummyRepository.