~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_init.py

  • Committer: Patch Queue Manager
  • Date: 2012-09-28 07:22:23 UTC
  • mfrom: (6566.1.1 revno-error)
  • Revision ID: pqm@pqm.ubuntu.com-20120928072223-m8dp02j933yp9j60
(vila) Fix typo in an error message from the 'revno' command. (Matthew
 Fuller)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class TestInit(TestCaseWithTransport):
37
37
 
38
38
    def setUp(self):
39
 
        TestCaseWithTransport.setUp(self)
 
39
        super(TestInit, self).setUp()
40
40
        self._default_label = '2a'
41
41
 
42
42
    def test_init_with_format(self):
168
168
 
169
169
    def test_init_default_format_option(self):
170
170
        """bzr init should read default format from option default_format"""
171
 
        conf = _mod_config.GlobalConfig.from_string('''
 
171
        g_store = _mod_config.GlobalStore()
 
172
        g_store._load_from_string('''
172
173
[DEFAULT]
173
174
default_format = 1.9
174
 
''', save=True)
 
175
''')
 
176
        g_store.save()
175
177
        out, err = self.run_bzr_subprocess('init')
176
178
        self.assertContainsRe(out, '1.9')
177
179