aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/routing
diff options
context:
space:
mode:
authorSharang Dashputre <sharang.d@gmail.com>2019-04-01 22:58:02 +0530
committerSharang Dashputre <sharang.d@gmail.com>2019-04-01 22:58:02 +0530
commit249622e74847c3b50f11dee8a3a6fd25392e2c84 (patch)
tree7c9f3c67b837bd008465bc19f61ab8b68009cf42 /actionpack/test/dispatch/routing
parente0a9e0259c56700fc83b3e886cdf7c04f6a83495 (diff)
downloadrails-249622e74847c3b50f11dee8a3a6fd25392e2c84.tar.gz
rails-249622e74847c3b50f11dee8a3a6fd25392e2c84.tar.bz2
rails-249622e74847c3b50f11dee8a3a6fd25392e2c84.zip
url -> URL where apt inside actionpack/
Diffstat (limited to 'actionpack/test/dispatch/routing')
-rw-r--r--actionpack/test/dispatch/routing/route_set_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/dispatch/routing/route_set_test.rb b/actionpack/test/dispatch/routing/route_set_test.rb
index e61d47b160..e6a2c35798 100644
--- a/actionpack/test/dispatch/routing/route_set_test.rb
+++ b/actionpack/test/dispatch/routing/route_set_test.rb
@@ -29,7 +29,7 @@ module ActionDispatch
assert_not empty?
end
- test "url helpers are added when route is added" do
+ test "URL helpers are added when route is added" do
draw do
get "foo", to: SimpleApp.new("foo#index")
end
@@ -48,7 +48,7 @@ module ActionDispatch
assert_equal "/bar", url_helpers.bar_path
end
- test "url helpers are updated when route is updated" do
+ test "URL helpers are updated when route is updated" do
draw do
get "bar", to: SimpleApp.new("bar#index"), as: :bar
end
@@ -62,7 +62,7 @@ module ActionDispatch
assert_equal "/baz", url_helpers.bar_path
end
- test "url helpers are removed when route is removed" do
+ test "URL helpers are removed when route is removed" do
draw do
get "foo", to: SimpleApp.new("foo#index")
get "bar", to: SimpleApp.new("bar#index")