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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-19 16:14:04 UTC
  • mfrom: (1558.4.12 bzr.mergeself)
  • Revision ID: pqm@pqm.ubuntu.com-20060319161404-bbeddf282f11af63
RemovedĀ unusedĀ error

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
        br_a, br_b = make_branches(self)
104
104
        fetch_steps(self, br_a, br_b, br_a)
105
105
 
 
106
    def test_fetch_self(self):
 
107
        wt = self.make_branch_and_tree('br')
 
108
        self.assertEqual(wt.branch.fetch(wt.branch), (0, []))
 
109
 
106
110
 
107
111
class TestMergeFetch(TestCaseWithTransport):
108
112