aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 00:34:06 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 00:34:06 +0530
commitd45145acdc576e46a1f1719d69bec96b5bf07b0a (patch)
tree46e85a31b6e5b47c0f37614b5dd03bd705ffa747 /actionpack/test
parent12cecdd345ae36816c2eb7f94e3855a7fcfed2f8 (diff)
downloadrails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.tar.gz
rails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.tar.bz2
rails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.zip
Changed 'args' to 'arguments' when used in places other than code with fixing few more typos
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/abstract/callbacks_test.rb2
-rw-r--r--actionpack/test/abstract/collector_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/abstract/callbacks_test.rb b/actionpack/test/abstract/callbacks_test.rb
index 1090af3060..8cba049485 100644
--- a/actionpack/test/abstract/callbacks_test.rb
+++ b/actionpack/test/abstract/callbacks_test.rb
@@ -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
diff --git a/actionpack/test/abstract/collector_test.rb b/actionpack/test/abstract/collector_test.rb
index c14d24905b..5709ad0378 100644
--- a/actionpack/test/abstract/collector_test.rb
+++ b/actionpack/test/abstract/collector_test.rb
@@ -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)