aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-08-14 16:13:26 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-08-14 16:13:26 -0700
commit6c48d9392fe964640fe5721fcd27bb170613cc27 (patch)
treeb3e2a8b36ecd6f2e0a37a4a01beca13d8214ed97 /actionpack/test/dispatch
parent5ba6966766e67af4ae0028c4429acbd280a100a2 (diff)
downloadrails-6c48d9392fe964640fe5721fcd27bb170613cc27.tar.gz
rails-6c48d9392fe964640fe5721fcd27bb170613cc27.tar.bz2
rails-6c48d9392fe964640fe5721fcd27bb170613cc27.zip
pass pass the mapping object down the add_route stack
then we can let the mapping object derive stuff that the Route object needs.
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/mapper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/mapper_test.rb b/actionpack/test/dispatch/mapper_test.rb
index 8c1b53041a..eca4ca8e0e 100644
--- a/actionpack/test/dispatch/mapper_test.rb
+++ b/actionpack/test/dispatch/mapper_test.rb
@@ -89,7 +89,7 @@ module ActionDispatch
options = { }
scope = Mapper::Scope.new({})
ast = Journey::Parser.parse '/store/:name(*rest)'
- m = Mapper::Mapping.build(scope, FakeSet.new, ast, 'foo', 'bar', nil, [:get], nil, {}, options)
+ m = Mapper::Mapping.build(scope, FakeSet.new, ast, 'foo', 'bar', nil, [:get], nil, {}, true, options)
assert_equal(/.+?/, m.requirements[:rest])
end