diff options
author | Lee Reilly <lee@leereilly.net> | 2011-05-29 12:40:24 -0700 |
---|---|---|
committer | Lee Reilly <lee@leereilly.net> | 2011-05-29 12:40:24 -0700 |
commit | 4f234bfd799f471490775a2843b3cf7db2af21ed (patch) | |
tree | ea9623612567ea02dbdd5a73463274bb3f92a6f9 /actionpack/test | |
parent | 18b153d15d76ff2f06b76a16ca46b548b7d6750a (diff) | |
download | rails-4f234bfd799f471490775a2843b3cf7db2af21ed.tar.gz rails-4f234bfd799f471490775a2843b3cf7db2af21ed.tar.bz2 rails-4f234bfd799f471490775a2843b3cf7db2af21ed.zip |
Corrected some typos and American vs. Queen's English issues
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/new_base/base_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/new_base/base_test.rb b/actionpack/test/controller/new_base/base_test.rb index 8fa5d20372..ed244513a5 100644 --- a/actionpack/test/controller/new_base/base_test.rb +++ b/actionpack/test/controller/new_base/base_test.rb @@ -40,7 +40,7 @@ module Dispatching class ContainedEmptyController < ActionController::Base ; end class ContainedSubEmptyController < ContainedEmptyController ; end class ContainedNonDefaultPathController < ActionController::Base - def self.controller_path; "i_am_extremly_not_default"; end + def self.controller_path; "i_am_extremely_not_default"; end end end @@ -89,7 +89,7 @@ module Dispatching end test "namespaced non-default controller path" do - assert_equal 'i_am_extremly_not_default', Submodule::ContainedNonDefaultPathController.controller_path + assert_equal 'i_am_extremely_not_default', Submodule::ContainedNonDefaultPathController.controller_path assert_equal Submodule::ContainedNonDefaultPathController.controller_path, Submodule::ContainedNonDefaultPathController.new.controller_path end |