summaryrefslogtreecommitdiff
path: root/spec/support/helpers/routes_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/routes_helpers.rb')
-rw-r--r--spec/support/helpers/routes_helpers.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/support/helpers/routes_helpers.rb b/spec/support/helpers/routes_helpers.rb
new file mode 100644
index 00000000000..c4129606418
--- /dev/null
+++ b/spec/support/helpers/routes_helpers.rb
@@ -0,0 +1,7 @@
+module RoutesHelpers
+ def fake_routes(&block)
+ @routes = @routes.dup
+ @routes.formatter.clear
+ ActionDispatch::Routing::Mapper.new(@routes).instance_exec(&block)
+ end
+end