aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_case.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2015-10-31 17:01:41 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2015-10-31 17:01:41 +0000
commitb217354dbbbbb49a020b0073ebb62c5cd2d96140 (patch)
treeb4bbbf8cf1e5223f21e81856a62b9b53c88713a6 /actionpack/lib/action_controller/test_case.rb
parente913834e92845b09c2e5be6394b63702c538764b (diff)
parente9a8b15778adeeda8dfccd2af6ca86b7e6bda575 (diff)
downloadrails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.tar.gz
rails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.tar.bz2
rails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.zip
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'actionpack/lib/action_controller/test_case.rb')
-rw-r--r--actionpack/lib/action_controller/test_case.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index 698719377c..442ffd6d7c 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -210,11 +210,11 @@ module ActionController
# # Simulate a POST response with the given HTTP parameters.
# post(:create, params: { book: { title: "Love Hina" }})
#
- # # Assert that the controller tried to redirect us to
+ # # Asserts that the controller tried to redirect us to
# # the created book's URI.
# assert_response :found
#
- # # Assert that the controller really put the book in the database.
+ # # Asserts that the controller really put the book in the database.
# assert_not_nil Book.find_by(title: "Love Hina")
# end
# end