mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
comment
This commit is contained in:
parent
be28a243b2
commit
cc04d679b8
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue