提交 fbb11854 编写于 作者: Y yuuji.yaginuma

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

上级 ed9589ee
...@@ -508,8 +508,8 @@ def integration_session ...@@ -508,8 +508,8 @@ def integration_session
# assert_equal 200, status # assert_equal 200, status
# #
# # post the login and follow through to the home page # # post the login and follow through to the home page
# post "/login", username: people(:jamis).username, # post "/login", params: { username: people(:jamis).username,
# password: people(:jamis).password # password: people(:jamis).password }
# follow_redirect! # follow_redirect!
# assert_equal 200, status # assert_equal 200, status
# assert_equal "/home", path # assert_equal "/home", path
...@@ -548,7 +548,7 @@ def integration_session ...@@ -548,7 +548,7 @@ def integration_session
# end # end
# #
# def speak(room, message) # def speak(room, message)
# xml_http_request "/say/#{room.id}", message: message # post "/say/#{room.id}", xhr: true, params: { message: message }
# assert(...) # assert(...)
# ... # ...
# end # end
...@@ -558,8 +558,8 @@ def integration_session ...@@ -558,8 +558,8 @@ def integration_session
# open_session do |sess| # open_session do |sess|
# sess.extend(CustomAssertions) # sess.extend(CustomAssertions)
# who = people(who) # who = people(who)
# sess.post "/login", username: who.username, # sess.post "/login", params: { username: who.username,
# password: who.password # password: who.password }
# assert(...) # assert(...)
# end # end
# end # end
...@@ -578,7 +578,8 @@ def integration_session ...@@ -578,7 +578,8 @@ def integration_session
# get "/login" # get "/login"
# assert_response :success # 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', path
# assert_equal 'Welcome david!', flash[:notice] # assert_equal 'Welcome david!', flash[:notice]
# #
...@@ -633,7 +634,7 @@ def integration_session ...@@ -633,7 +634,7 @@ def integration_session
# sess.extend(CustomDsl) # sess.extend(CustomDsl)
# u = users(user) # u = users(user)
# sess.https! # 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 # assert_equal '/welcome', sess.path
# sess.https!(false) # sess.https!(false)
# end # end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册