Skip to content

Commit

Permalink
update integration test example as is not output deprecation warning …
Browse files Browse the repository at this point in the history
…[ci skip]
  • Loading branch information
y-yagi committed Mar 7, 2015
1 parent ed9589e commit fbb1185
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions actionpack/lib/action_dispatch/testing/integration.rb
Expand Up @@ -508,8 +508,8 @@ def integration_session
# assert_equal 200, status
#
# # post the login and follow through to the home page
# post "/login", username: people(:jamis).username,
# password: people(:jamis).password
# post "/login", params: { username: people(:jamis).username,
# password: people(:jamis).password }
# follow_redirect!
# assert_equal 200, status
# assert_equal "/home", path
Expand Down Expand Up @@ -548,7 +548,7 @@ def integration_session
# end
#
# def speak(room, message)
# xml_http_request "/say/#{room.id}", message: message
# post "/say/#{room.id}", xhr: true, params: { message: message }
# assert(...)
# ...
# end
Expand All @@ -558,8 +558,8 @@ def integration_session
# open_session do |sess|
# sess.extend(CustomAssertions)
# who = people(who)
# sess.post "/login", username: who.username,
# password: who.password
# sess.post "/login", params: { username: who.username,
# password: who.password }
# assert(...)
# end
# end
Expand All @@ -578,7 +578,8 @@ def integration_session
# get "/login"
# assert_response :success
#
# post_via_redirect "/login", username: users(:david).username, password: users(:david).password
# post "/login", params: { username: users(:david).username, password: users(:david).password }
# follow_redirect!
# assert_equal '/welcome', path
# assert_equal 'Welcome david!', flash[:notice]
#
Expand Down Expand Up @@ -633,7 +634,7 @@ def integration_session
# sess.extend(CustomDsl)
# u = users(user)
# sess.https!
# sess.post "/login", username: u.username, password: u.password
# sess.post "/login", params: { username: u.username, password: u.password }
# assert_equal '/welcome', sess.path
# sess.https!(false)
# end
Expand Down

0 comments on commit fbb1185

Please sign in to comment.