aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_interfaces.py')
-rw-r--r--tests/test_interfaces.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_interfaces.py b/tests/test_interfaces.py
index 4d571ea6..329ac7db 100644
--- a/tests/test_interfaces.py
+++ b/tests/test_interfaces.py
@@ -36,6 +36,7 @@ class TestVerifyInterface(object):
def method(self):
"""Method with no arguments"""
+ NonImplementer().method()
with pytest.raises(InterfaceNotImplemented):
verify_interface(SimpleInterface, NonImplementer)
@@ -51,4 +52,5 @@ class TestVerifyInterface(object):
def property(self):
"""A concrete property"""
+ NonImplementer().property
verify_interface(SimpleInterface, NonImplementer)