/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: Aaron Bentley
  • Date: 2006-03-18 23:40:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1615.
  • Revision ID: aaron.bentley@utoronto.ca-20060318234051-415e5fcb51da82e4
Allow merge against self, make fetching self a noop

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