/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 Pool
  • Date: 2007-09-14 06:31:28 UTC
  • mfrom: (2822 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2823.
  • Revision ID: mbp@sourcefrog.net-20070914063128-0p7mh6zfb4pzdg9p
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
557
557
            [('call_expecting_body', 'Repository.get_revision_graph',
558
558
             ('///sinhala/', ''))],
559
559
            client._calls)
560
 
        self.assertEqual({r1: [], r2: [r1]}, result)
 
560
        self.assertEqual({r1: (), r2: (r1, )}, result)
561
561
 
562
562
    def test_specific_revision(self):
563
563
        # with a specific revision we want the graph for that
577
577
            [('call_expecting_body', 'Repository.get_revision_graph',
578
578
             ('///sinhala/', r2))],
579
579
            client._calls)
580
 
        self.assertEqual({r11: [], r12: [], r2: [r11, r12], }, result)
 
580
        self.assertEqual({r11: (), r12: (), r2: (r11, r12), }, result)
581
581
 
582
582
    def test_no_such_revision(self):
583
583
        revid = '123'