/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/test_remote.py

  • Committer: Martin Albisetti
  • Date: 2008-04-08 22:51:37 UTC
  • mfrom: (3346 +trunk)
  • mto: (3350.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 3351.
  • Revision ID: argentina@gmail.com-20080408225137-uynl9dxtsdpi8nl9
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
723
723
              ('quack/', ''))],
724
724
            client._calls)
725
725
 
 
726
    def test_get_parent_map_unexpected_response(self):
 
727
        responses = [
 
728
            (('something unexpected!',), '')]
 
729
        repo, client = self.setup_fake_client_and_repository(responses, 'path')
 
730
        self.assertRaises(
 
731
            errors.UnexpectedSmartServerResponse,
 
732
            repo.get_parent_map, ['a-revision-id'])
726
733
 
727
734
 
728
735
class TestRepositoryGetRevisionGraph(TestRemoteRepository):