11 lines
273 B
Ruby
11 lines
273 B
Ruby
RSpec.configure do |config|
|
|
config.around(:each, :allow_forgery_protection) do |example|
|
|
begin
|
|
ActionController::Base.allow_forgery_protection = true
|
|
|
|
example.call
|
|
ensure
|
|
ActionController::Base.allow_forgery_protection = false
|
|
end
|
|
end
|
|
end
|