Auto-correct rubocop offences

This commit is contained in:
Ryuta Kamizono 2019-04-03 08:40:15 +09:00
parent 59bed68d5e
commit b2209ca59d
2 changed files with 17 additions and 17 deletions

View File

@ -2210,25 +2210,25 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
end
end
get '/posts/1/comments'
assert_equal 'comments#index', @response.body
assert_equal '/posts/1/comments', post_comments_path('1')
get "/posts/1/comments"
assert_equal "comments#index", @response.body
assert_equal "/posts/1/comments", post_comments_path("1")
get '/posts/1/comments/new'
assert_equal 'comments#new', @response.body
assert_equal '/posts/1/comments/new', new_post_comment_path('1')
get "/posts/1/comments/new"
assert_equal "comments#new", @response.body
assert_equal "/posts/1/comments/new", new_post_comment_path("1")
get '/posts/1/comments/2'
assert_equal 'comments#show', @response.body
assert_equal '/posts/1/comments/2', post_comment_path('1', '2')
get "/posts/1/comments/2"
assert_equal "comments#show", @response.body
assert_equal "/posts/1/comments/2", post_comment_path("1", "2")
get '/posts/1/comments/2/edit'
assert_equal 'comments#edit', @response.body
assert_equal '/posts/1/comments/2/edit', edit_post_comment_path('1', '2')
get "/posts/1/comments/2/edit"
assert_equal "comments#edit", @response.body
assert_equal "/posts/1/comments/2/edit", edit_post_comment_path("1", "2")
get '/tags/3'
assert_equal 'tags#show', @response.body
assert_equal '/tags/3', tag_path('3')
get "/tags/3"
assert_equal "tags#show", @response.body
assert_equal "/tags/3", tag_path("3")
end
def test_shallow_deeply_nested_resources

View File

@ -181,8 +181,8 @@ class ZeitwerkIntegrationTest < ActiveSupport::TestCase
boot("production")
assert $zeitwerk_integration_test_user
assert !$zeitwerk_integration_test_lib
assert !$zeitwerk_integration_test_extras
assert_not $zeitwerk_integration_test_lib
assert_not $zeitwerk_integration_test_extras
assert WebhookHacks
assert WebsocketHacks