~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Patch Queue Manager
  • Date: 2014-05-07 22:20:27 UTC
  • mfrom: (6591.2.1 bazaar)
  • Revision ID: pqm@pqm.ubuntu.com-20140507222027-mne60p2viqptfcmz
(richard-wilbur) Also honor $XDG_CONFIG_HOME specification on Mac OS X
 platform. (Fabien Meghazi) (Fabien Meghazi (OpenERP))

Show diffs side-by-side

added added

removed removed

Lines of Context:
595
595
    # subdirectory of $XDG_CONFIG_HOME
596
596
 
597
597
    def setUp(self):
598
 
        if sys.platform in ('darwin', 'win32'):
 
598
        if sys.platform == 'win32':
599
599
            raise tests.TestNotApplicable(
600
600
                'XDG config dir not used on this platform')
601
601
        super(TestXDGConfigDir, self).setUp()