import sys import unittest from ..test_backend import BackendBasicTests from keyring.backends import OS_X def is_osx_keychain_supported(): return sys.platform in ('mac', 'darwin') @unittest.skipUnless(is_osx_keychain_supported(), "Need OS X") class OSXKeychainTestCase(BackendBasicTests, unittest.TestCase): def init_keyring(self): return OS_X.Keyring()
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
__init__.py | File | 0 B | 0644 |
|
test_OS_X.py | File | 397 B | 0644 |
|
test_SecretService.py | File | 997 B | 0644 |
|
test_Windows.py | File | 904 B | 0644 |
|
test_kwallet.py | File | 2.96 KB | 0644 |
|