aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_interfaces.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-07-02 00:06:18 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-07-02 00:06:18 -0400
commitcc04d679b81bcd69370ddc79c651e5e8a656ef04 (patch)
treee36b3a9c63b0193ae2db19735752d9357974aa6e /tests/test_interfaces.py
parentbe28a243b2ca27a569cb732003e3ebde69ed75b7 (diff)
downloadcryptography-cc04d679b81bcd69370ddc79c651e5e8a656ef04.tar.gz
cryptography-cc04d679b81bcd69370ddc79c651e5e8a656ef04.tar.bz2
cryptography-cc04d679b81bcd69370ddc79c651e5e8a656ef04.zip
comment
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 329ac7db..bdb4a94d 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"""
+ # Invoke this to ensure the line is covered
NonImplementer().method()
with pytest.raises(InterfaceNotImplemented):
verify_interface(SimpleInterface, NonImplementer)
@@ -52,5 +53,6 @@ class TestVerifyInterface(object):
def property(self):
"""A concrete property"""
+ # Invoke this to ensure the line is covered
NonImplementer().property
verify_interface(SimpleInterface, NonImplementer)