update integration test example as is not output deprecation warning [ci skip]

This commit is contained in:
yuuji.yaginuma 2015-03-07 14:28:47 +09:00
parent ed9589ee62
commit fbb11854c7

@ -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
@ -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
@ -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
@ -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]
#
@ -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