~shnatsel/bzr/launchpad-no-ssh-switch

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_debug.py

  • Committer: Patch Queue Manager
  • Date: 2012-08-23 14:24:38 UTC
  • mfrom: (6499.3.13 832042-shared-stores)
  • Revision ID: pqm@pqm.ubuntu.com-20120823142438-804xd3yql622ahhp
(vila) Share and cache local config files (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
class TestDebugFlags(tests.TestCaseInTempDir):
28
28
 
29
 
    def test_set_debug_flags_from_config(self):
30
 
        # test both combinations because configobject automatically splits up
31
 
        # comma-separated lists
 
29
    def test_set_no_debug_flags_from_config(self):
 
30
        self.assertDebugFlags([], '')
 
31
 
 
32
    def test_set_single_debug_flags_from_config(self):
 
33
        self.assertDebugFlags(['hpss'], 'debug_flags = hpss\n')
 
34
 
 
35
    def test_set_multiple_debug_flags_from_config(self):
32
36
        self.assertDebugFlags(['hpss', 'error'], 'debug_flags = hpss, error\n')
33
 
        self.assertDebugFlags(['hpss'], 'debug_flags = hpss\n')
34
37
 
35
38
    def assertDebugFlags(self, expected_flags, conf_bytes):
36
39
        conf = config.GlobalStack()