Change minitest redirect_to documentation to reflect required description parameter when using block syntax

This commit is contained in:
Edward Poot 2016-11-07 23:26:02 +01:00 committed by Elliot Winkler
parent 1201198f95
commit fae44066d2
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ module Shoulda
# context 'GET #show' do
# setup { get :show }
#
# should redirect_to { posts_path }
# should redirect_to('/posts') { posts_path }
# should redirect_to(action: :index)
# end
# end