aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/inflector_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 13:43:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 13:43:04 +0000
commit6cae2b743913bad7fc530c01f80cc6fe7ef9309d (patch)
tree1adb1e63a60cf891dc22af15d216dbd1193e6403 /activesupport/test/inflector_test.rb
parent7267db58906434da54e0f50122b5e8b704b1c953 (diff)
downloadrails-6cae2b743913bad7fc530c01f80cc6fe7ef9309d.tar.gz
rails-6cae2b743913bad7fc530c01f80cc6fe7ef9309d.tar.bz2
rails-6cae2b743913bad7fc530c01f80cc6fe7ef9309d.zip
Added inflection rules for "sh" words, like "wish" and "fish" #755 [phillip@pjbsoftware.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@844 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/inflector_test.rb')
-rw-r--r--activesupport/test/inflector_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index 6723313046..14a532a9a2 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -17,7 +17,9 @@ class InflectorTest < Test::Unit::TestCase
"process" => "processes",
"address" => "addresses",
"case" => "cases",
- "stack" => "stacks",
+ "stack" => "stacks",
+ "wish" => "wishes",
+ "fish" => "fish",
"category" => "categories",
"query" => "queries",