/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/blackbox/test_selftest.py

Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        self.working_dir = working_dir
112
112
        return '', ''
113
113
 
114
 
    def test_args(self):
115
 
        """Test that run_bzr passes args correctly to _run_bzr_core"""
116
 
        self.callDeprecated(
117
 
                ['passing varargs to run_bzr was deprecated in version 0.18.'],
118
 
                self.run_bzr,
119
 
                'arg1', 'arg2', 'arg3', retcode=1)
120
 
        self.assertEqual(['arg1', 'arg2', 'arg3'], self.argv)
121
 
 
122
114
    def test_encoding(self):
123
115
        """Test that run_bzr passes encoding to _run_bzr_core"""
124
116
        self.run_bzr('foo bar')