aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/actionpack
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2018-09-24 16:01:34 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2018-09-24 16:01:34 -0700
commit3301804ff6abcd5aae06cc5acbb82bc6a472f008 (patch)
tree3bb9c7a379bafe366900e2357f08246fffdbfcd6 /actionview/test/actionpack
parentd8c0aa88e055c9f08a729827544b186561a6c203 (diff)
downloadrails-3301804ff6abcd5aae06cc5acbb82bc6a472f008.tar.gz
rails-3301804ff6abcd5aae06cc5acbb82bc6a472f008.tar.bz2
rails-3301804ff6abcd5aae06cc5acbb82bc6a472f008.zip
make bot happy
Diffstat (limited to 'actionview/test/actionpack')
-rw-r--r--actionview/test/actionpack/controller/layout_test.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/actionview/test/actionpack/controller/layout_test.rb b/actionview/test/actionpack/controller/layout_test.rb
index 14acb737f9..6d5c97b7fd 100644
--- a/actionview/test/actionpack/controller/layout_test.rb
+++ b/actionview/test/actionpack/controller/layout_test.rb
@@ -49,7 +49,7 @@ class LayoutAutoDiscoveryTest < ActionController::TestCase
include TemplateHandlerHelper
with_routes do
- get :hello, to: 'views#hello'
+ get :hello, to: "views#hello"
end
def setup
@@ -153,8 +153,8 @@ class LayoutSetInResponseTest < ActionController::TestCase
include TemplateHandlerHelper
with_routes do
- get :hello, to: 'views#hello'
- get :hello, to: 'views#goodbye'
+ get :hello, to: "views#hello"
+ get :hello, to: "views#goodbye"
end
def test_layout_set_when_using_default_layout
@@ -244,7 +244,7 @@ end
class LayoutExceptionRaisedTest < ActionController::TestCase
with_routes do
- get :hello, to: 'views#hello'
+ get :hello, to: "views#hello"
end
def test_exception_raised_when_layout_file_not_found
@@ -261,7 +261,7 @@ end
class LayoutStatusIsRenderedTest < ActionController::TestCase
with_routes do
- get :hello, to: 'views#hello'
+ get :hello, to: "views#hello"
end
def test_layout_status_is_rendered
@@ -278,7 +278,7 @@ unless Gem.win_platform?
class LayoutSymlinkedIsRenderedTest < ActionController::TestCase
with_routes do
- get :hello, to: 'views#hello'
+ get :hello, to: "views#hello"
end
def test_symlinked_layout_is_rendered