~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Fabien Meghazi
  • Date: 2014-02-14 10:29:49 UTC
  • mto: This revision was merged to the branch mainline in revision 6596.
  • Revision ID: fme@openerp.com-20140214102949-mee83zlgwq5caakt
Also honor $XDG_CONFIG_HOME specification on Mac OS X platform

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()