~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testworkingtree.py

  • Committer: Robert Collins
  • Date: 2005-10-18 06:56:24 UTC
  • mfrom: (0.2.1)
  • mto: This revision was merged to the branch mainline in revision 1463.
  • Revision ID: robertc@robertcollins.net-20051018065624-e92ff4e7ab3175bb
'bzr pull' now accepts '--clobber'.

This will discard local changes and make this branch identical to the source
branch. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
        self.assertEqual('w', tree.branch._lock_mode)
94
94
        tree.unlock()
95
95
        self.assertEqual(None, tree.branch._lock_count)
96
 
        
97
 
    def test_pull(self):
 
96
 
 
97
    def get_pullable_branches(self):
98
98
        self.build_tree(['from/', 'from/file', 'to/'])
99
99
        br_a = Branch.initialize('from')
100
100
        br_a.add('file')
101
101
        br_a.commit('foo', rev_id='A')
102
102
        br_b = Branch.initialize('to')
 
103
        return br_a, br_b
 
104
 
 
105
    def test_pull(self):
 
106
        br_a, br_b = self.get_pullable_branches()
103
107
        br_b.working_tree().pull(br_a)
104
108
        self.failUnless(br_b.has_revision('A'))
105
109
        self.assertEqual(['A'], br_b.revision_history())
 
110
 
 
111
    def test_pull_clobbers(self):
 
112
        br_a, br_b = self.get_pullable_branches()
 
113
        br_b.commit('foo', rev_id='B')
 
114
        self.assertEqual(['B'], br_b.revision_history())
 
115
        br_b.working_tree().pull(br_a, clobber=True)
 
116
        self.failUnless(br_b.has_revision('A'))
 
117
        self.failUnless(br_b.has_revision('B'))
 
118
        self.assertEqual(['A'], br_b.revision_history())