Hi,
I'm trying to mock the OpenID handling in my cucumber tests. For this purpose I use the following method:
def set_result_of_openid_authentication(result_type, profile_data = nil)
ActionController::Base.class_eval "
def begin_open_id_authentication(identity_url, options = {})
yield [OpenIdAuthentication::Result.new('#{result_type}'.to_sym), identity_url, #{profile_data}]
end
"
end
# example usage
set_result_of_openid_authentication :successful, 'email' => '[email protected]'
This works fine with Ruby 1.9.2, but with Ruby 1.8.7 I get the following compile error:
(eval):5:in `set_result_of_openid_authentication': compile error
(eval):3: syntax error, unexpected tIVAR, expecting kDO or '{' or '('
...identity_url, [email protected]]
For some reason the hash is not preserved... Is there some workaround to make it work with both Rubies?
Thanks.