summaryrefslogtreecommitdiff
path: root/spec/support/forgery_protection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/forgery_protection.rb')
-rw-r--r--spec/support/forgery_protection.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/support/forgery_protection.rb b/spec/support/forgery_protection.rb
new file mode 100644
index 00000000000..a5e7b761651
--- /dev/null
+++ b/spec/support/forgery_protection.rb
@@ -0,0 +1,11 @@
+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