summaryrefslogtreecommitdiff
path: root/src/zope/component/tests/test_registry.py
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-06-29 12:44:25 -0500
committerJason Madden <jamadden@gmail.com>2017-06-30 11:01:09 -0500
commit712bb8e078de20e01311cfe57d8dccfbbdcbe9b3 (patch)
tree4cb7d4e9cc901fe144d168b77eea235a08932787 /src/zope/component/tests/test_registry.py
parent43d7351318eb373d1f4f500b70e4e461048c16f4 (diff)
downloadzope-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_registry.py')
-rw-r--r--src/zope/component/tests/test_registry.py18
1 files changed, 4 insertions, 14 deletions
diff --git a/src/zope/component/tests/test_registry.py b/src/zope/component/tests/test_registry.py
index 0ba6bd2..a491e43 100644
--- a/src/zope/component/tests/test_registry.py
+++ b/src/zope/component/tests/test_registry.py
@@ -15,6 +15,7 @@
"""
import unittest
+from zope.component.tests import fails_if_called
class Test_dispatchUtilityRegistrationEvent(unittest.TestCase):
@@ -48,8 +49,7 @@ class Test_dispatchAdapterRegistrationEvent(unittest.TestCase):
def test_it(self):
from zope.component import registry
class _Registration(object):
- def factory(self, *args, **kw):
- pass
+ factory = fails_if_called(self)
_registration = _Registration()
_EVENT = object()
_handled = []
@@ -72,8 +72,7 @@ class Test_dispatchSubscriptionAdapterRegistrationEvent(unittest.TestCase):
def test_it(self):
from zope.component import registry
class _Registration(object):
- def factory(self, *args, **kw):
- pass
+ factory = fails_if_called(self)
_registration = _Registration()
_EVENT = object()
_handled = []
@@ -95,8 +94,7 @@ class Test_dispatchHandlerRegistrationEvent(unittest.TestCase):
def test_it(self):
from zope.component import registry
class _Registration(object):
- def handler(self, *args, **kw):
- pass
+ handler = fails_if_called(self)
_registration = _Registration()
_EVENT = object()
_handled = []
@@ -121,11 +119,3 @@ class _Monkey(object):
def __exit__(self, exc_type, exc_val, exc_tb):
for key, value in self.to_restore.items():
setattr(self.module, key, value)
-
-def test_suite():
- return unittest.TestSuite((
- unittest.makeSuite(Test_dispatchUtilityRegistrationEvent),
- unittest.makeSuite(Test_dispatchAdapterRegistrationEvent),
- unittest.makeSuite(Test_dispatchSubscriptionAdapterRegistrationEvent),
- unittest.makeSuite(Test_dispatchHandlerRegistrationEvent),
- ))