From 517613c39e3b5130d417989f8f6e1a74ba2ccfc1 Mon Sep 17 00:00:00 2001 From: amitkumarsuroliya Date: Fri, 9 Oct 2015 00:39:27 +0530 Subject: =?UTF-8?q?Improved=20readability=20of=20Assertion=20docs,=20repla?= =?UTF-8?q?ced=20=E2=80=98Assert=E2=80=99=20->=20=E2=80=98Asserts=E2=80=99?= =?UTF-8?q?=20at=20all=20places=20[ci=20skip]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Following commit https://github.com/rails/docrails/commit/495722a95687e25114ae75608dd3107ac5d6611b --- actionpack/lib/action_controller/test_case.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack/lib/action_controller') diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index cf78688126..8bd00d9c87 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 -- cgit v1.2.3