failing test for revalidation

This commit is contained in:
sneakers-the-rat 2024-09-03 12:50:26 -07:00
parent cb1e6357b6
commit d595e87e10
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -151,3 +151,10 @@ def test_interface_recursive(interfaces):
assert issubclass(interfaces.interface3, interfaces.interface1)
assert issubclass(interfaces.interface1, Interface)
assert interfaces.interface4 in ifaces
def test_interface_revalidate(all_interfaces):
"""
An interface should revalidate with the output of its initial validation
"""
_ = type(all_interfaces)(array=all_interfaces.array)