~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

nuke duplicate test functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        output = self.runbzr('diff -r last:3..last:1', backtick=1)
212
212
        self.assert_('\n+baz' in output)
213
213
 
214
 
    def test_diff(self):
215
 
        self.example_branch()
216
 
        file('hello', 'wt').write('hello world!')
217
 
        self.runbzr('commit -m fixing hello')
218
 
        output = self.runbzr('diff -r 2..3', backtick=1)
219
 
        self.assert_('\n+hello world!' in output)
220
 
        output = self.runbzr('diff -r last:3..last:1', backtick=1)
221
 
        self.assert_('\n+baz' in output)
222
 
 
223
214
    def test_merge(self):
224
215
        from bzrlib.branch import Branch
225
216