@@ -2210,25 +2210,25 @@ def test_shallow_false_inside_nested_shallow_resource
2210
2210
end
2211
2211
end
2212
2212
2213
- get ' /posts/1/comments'
2214
- assert_equal ' comments#index' , @response . body
2215
- assert_equal ' /posts/1/comments' , post_comments_path ( '1' )
2213
+ get " /posts/1/comments"
2214
+ assert_equal " comments#index" , @response . body
2215
+ assert_equal " /posts/1/comments" , post_comments_path ( "1" )
2216
2216
2217
- get ' /posts/1/comments/new'
2218
- assert_equal ' comments#new' , @response . body
2219
- assert_equal ' /posts/1/comments/new' , new_post_comment_path ( '1' )
2217
+ get " /posts/1/comments/new"
2218
+ assert_equal " comments#new" , @response . body
2219
+ assert_equal " /posts/1/comments/new" , new_post_comment_path ( "1" )
2220
2220
2221
- get ' /posts/1/comments/2'
2222
- assert_equal ' comments#show' , @response . body
2223
- assert_equal ' /posts/1/comments/2' , post_comment_path ( '1' , '2' )
2221
+ get " /posts/1/comments/2"
2222
+ assert_equal " comments#show" , @response . body
2223
+ assert_equal " /posts/1/comments/2" , post_comment_path ( "1" , "2" )
2224
2224
2225
- get ' /posts/1/comments/2/edit'
2226
- assert_equal ' comments#edit' , @response . body
2227
- assert_equal ' /posts/1/comments/2/edit' , edit_post_comment_path ( '1' , '2' )
2225
+ get " /posts/1/comments/2/edit"
2226
+ assert_equal " comments#edit" , @response . body
2227
+ assert_equal " /posts/1/comments/2/edit" , edit_post_comment_path ( "1" , "2" )
2228
2228
2229
- get ' /tags/3'
2230
- assert_equal ' tags#show' , @response . body
2231
- assert_equal ' /tags/3' , tag_path ( '3' )
2229
+ get " /tags/3"
2230
+ assert_equal " tags#show" , @response . body
2231
+ assert_equal " /tags/3" , tag_path ( "3" )
2232
2232
end
2233
2233
2234
2234
def test_shallow_deeply_nested_resources
0 commit comments