def test__invoke_handler_not_found(resource):
    actual = resource._invoke_handler(None, None, Action.CREATE, {})
    expected = ProgressEvent.failed(HandlerErrorCode.InternalFailure,
                                    "No handler for CREATE")
    assert actual == expected