0b5133bac2
Extracted `@request.env['devise.mapping'] = Devise.mappings[:user]` and `Rails.application.env_config['devise.mapping'] = Devise.mappings[:user]` in our tests into the helper method `set_devise_mapping`
14 lines
401 B
Ruby
14 lines
401 B
Ruby
module DeviseHelpers
|
|
# explicitly tells Devise which mapping to use
|
|
# this is needed when we are testing a Devise controller bypassing the router
|
|
def set_devise_mapping(context:)
|
|
env =
|
|
if context.respond_to?(:env_config)
|
|
context.env_config
|
|
elsif context.respond_to?(:env)
|
|
context.env
|
|
end
|
|
|
|
env['devise.mapping'] = Devise.mappings[:user] if env
|
|
end
|
|
end
|