coolblaze03's picture
Upload folder using huggingface_hub
907001b verified
Raw
History Blame Contribute Delete
244 Bytes
def verifyZeroInteractions(*objs):
"""pass"""
for obj in objs:
theMock = _get_mock_or_raise(obj)
if len(theMock.invocations) > 0:
raise VerificationError('\nUnwanted interaction: %s' % theMock.invocations[0])