aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/routing/route_set_test.rb
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2014-01-20 16:34:22 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2014-01-20 16:34:22 +0000
commitbf191318afb62a66fe37bd2649ecabfc4c8744a6 (patch)
tree377088ba63258dc65f77d130b5c3ebe342e2cae3 /actionpack/test/dispatch/routing/route_set_test.rb
parentf9f32e04ad57c37353a756673794a41026f65a34 (diff)
downloadrails-bf191318afb62a66fe37bd2649ecabfc4c8744a6.tar.gz
rails-bf191318afb62a66fe37bd2649ecabfc4c8744a6.tar.bz2
rails-bf191318afb62a66fe37bd2649ecabfc4c8744a6.zip
Tidy up tests and CHANGELOG for #12598
Diffstat (limited to 'actionpack/test/dispatch/routing/route_set_test.rb')
-rw-r--r--actionpack/test/dispatch/routing/route_set_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/routing/route_set_test.rb b/actionpack/test/dispatch/routing/route_set_test.rb
index 3831c4c585..0e488d2b88 100644
--- a/actionpack/test/dispatch/routing/route_set_test.rb
+++ b/actionpack/test/dispatch/routing/route_set_test.rb
@@ -30,12 +30,10 @@ module ActionDispatch
draw do
get 'foo', to: SimpleApp.new('foo#index')
get 'bar', to: SimpleApp.new('bar#index')
- get 'foo-bar', to: SimpleApp.new('bar#index')
end
assert_equal '/foo', url_helpers.foo_path
assert_equal '/bar', url_helpers.bar_path
- assert_equal '/foo-bar', url_helpers.foo_bar_path
end
test "url helpers are updated when route is updated" do