diff options
author | Jason Madden <jamadden@gmail.com> | 2017-06-29 12:44:25 -0500 |
---|---|---|
committer | Jason Madden <jamadden@gmail.com> | 2017-06-30 11:01:09 -0500 |
commit | 712bb8e078de20e01311cfe57d8dccfbbdcbe9b3 (patch) | |
tree | 4cb7d4e9cc901fe144d168b77eea235a08932787 /src/zope/component/tests/test_persistentregistry.py | |
parent | 43d7351318eb373d1f4f500b70e4e461048c16f4 (diff) | |
download | zope-component-issue29.tar.gz |
100% coverageissue29
Add change note and badge to readme.
Remove unused class and function.
Omit standalonetests.py entirely from coverage.
Another unused class.
Incorporate feedback in test__api.py
* Bring back _callFUT and make the queryAdapterInContext tests call it
* Change raise NotImplentedError into specific fails_if_called() calls.
Remove redundant argument now that all test in Test_adapts pass under all versions.
Remove NotImplementedError from test_globalregistry.py
Remove NotImplementedError from test_hookable.py
Remove NotImplementedError from test_registry.py
Remove NotImplementedError from test_security.py
Remove NotImplementedError from test_zcml.py
Remove NotImplementedError from test_factory.py
Document ZCML feature and devmode.
Really accept all arguments unless opted out.
Diffstat (limited to 'src/zope/component/tests/test_persistentregistry.py')
-rw-r--r-- | src/zope/component/tests/test_persistentregistry.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/zope/component/tests/test_persistentregistry.py b/src/zope/component/tests/test_persistentregistry.py index 1a8fcf1..7ae79a3 100644 --- a/src/zope/component/tests/test_persistentregistry.py +++ b/src/zope/component/tests/test_persistentregistry.py @@ -16,6 +16,14 @@ import unittest +def skipIfNoPersistent(testfunc): + try: + import persistent + except ImportError: + return unittest.skip("persistent not installed")(testfunc) + return testfunc + +@skipIfNoPersistent class PersistentAdapterRegistryTests(unittest.TestCase): def _getTargetClass(self): @@ -123,7 +131,7 @@ class PersistentAdapterRegistryTests(unittest.TestCase): self.assertEqual(registry.__bases__, bases) self.assertEqual(registry.ro, [registry] + list(bases)) - +@skipIfNoPersistent class PersistentComponentsTests(unittest.TestCase): def _getTargetClass(self): @@ -156,9 +164,3 @@ def _makeOctets(s): if sys.version_info < (3,): return bytes(s) return bytes(s, 'ascii') #pragma NO COVERAGE - -def test_suite(): - return unittest.TestSuite(( - unittest.makeSuite(PersistentAdapterRegistryTests), - unittest.makeSuite(PersistentComponentsTests), - )) |