Changed 'args' to 'arguments' in test description

This commit is contained in:
Prathamesh Sonpatki 2013-03-24 02:26:06 +05:30
parent 5f59317ec6
commit ba7c9d76af
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ module AbstractController
end
class TestCallbacksWithArgs < ActiveSupport::TestCase
test "callbacks still work when invoking process with multiple args" do
test "callbacks still work when invoking process with multiple arguments" do
controller = CallbacksWithArgs.new
controller.process(:index, " Howdy!")
assert_equal "Hello world Howdy!", controller.response_body

View File

@ -42,7 +42,7 @@ module AbstractController
end
end
test "generated methods call custom with args received" do
test "generated methods call custom with arguments received" do
collector = MyCollector.new
collector.html
collector.text(:foo)