1""" Unittests """
2import os
3
4if 'DYLD_FRAMEWORK_PATH' not in os.environ or \
5    'Library/PrivateFrameworks/' not in os.environ['DYLD_FRAMEWORK_PATH']:
6        # Check for:
7        # DYLD_FRAMEWORK_PATH='/Developer/Library/PrivateFrameworks/'
8
9        raise ImportError("Please define DYLD_FRAMEWORK_PATH, otherwise the tests will fail")
10