diff options
author | Paul McMahon <paul@doorkeeper.jp> | 2018-07-24 11:29:31 +0900 |
---|---|---|
committer | Paul McMahon <paul@doorkeeper.jp> | 2018-07-24 11:29:31 +0900 |
commit | 7b9c19d94b18f340552f95225bf01d6f91804184 (patch) | |
tree | 9a5d11f6f226616363b6ab505b2692576a68a92a /actionpack/test/dispatch | |
parent | bd139a59405044c27bf367cde671e4bdbf7ccb57 (diff) | |
download | rails-7b9c19d94b18f340552f95225bf01d6f91804184.tar.gz rails-7b9c19d94b18f340552f95225bf01d6f91804184.tar.bz2 rails-7b9c19d94b18f340552f95225bf01d6f91804184.zip |
Rails guides are now served over https
http links will be redirected to the https version, but still better to
just directly link to the https version.
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/routing/inspector_test.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/test/dispatch/routing/inspector_test.rb b/actionpack/test/dispatch/routing/inspector_test.rb index 9150d5010b..f1f6547889 100644 --- a/actionpack/test/dispatch/routing/inspector_test.rb +++ b/actionpack/test/dispatch/routing/inspector_test.rb @@ -368,7 +368,7 @@ module ActionDispatch assert_equal [ "No routes were found for this grep pattern.", - "For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html." + "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html." ], output end @@ -380,7 +380,7 @@ module ActionDispatch "", "Please add some routes in config/routes.rb.", "", - "For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html." + "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html." ], output end @@ -434,7 +434,7 @@ module ActionDispatch assert_equal [ "No routes were found for this controller.", - "For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html." + "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html." ], output end @@ -445,7 +445,7 @@ module ActionDispatch assert_equal [ "No routes were found for this grep pattern.", - "For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html." + "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html." ], output end @@ -457,7 +457,7 @@ module ActionDispatch "", "Please add some routes in config/routes.rb.", "", - "For more information about routes, see the Rails guide: http://guides.rubyonrails.org/routing.html." + "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html." ], output end |