aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-12 05:29:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-12 05:29:47 +0000
commit9105cd10640c06b53536d99211ef8183b1fa7705 (patch)
treee912808a8b6a1df44017c4939a920275267ea9b4 /activesupport/test
parent2fe8610673e7445860830aad5e6ad49a1c99f2c5 (diff)
downloadrails-9105cd10640c06b53536d99211ef8183b1fa7705.tar.gz
rails-9105cd10640c06b53536d99211ef8183b1fa7705.tar.bz2
rails-9105cd10640c06b53536d99211ef8183b1fa7705.zip
Fixed inflections for status, quiz, move #2056 [deirdre@deirdre.net]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2214 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/inflector_test.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index 4337dfd9d6..620ae6f78e 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -35,6 +35,8 @@ class InflectorTest < Test::Unit::TestCase
"safe" => "saves",
"half" => "halves",
+ "move" => "moves",
+
"salesperson" => "salespeople",
"person" => "people",
@@ -65,6 +67,8 @@ class InflectorTest < Test::Unit::TestCase
"series" => "series",
"species" => "species",
+ "quiz" => "quizzes",
+
"perspective" => "perspectives",
"ox" => "oxen",
@@ -75,7 +79,8 @@ class InflectorTest < Test::Unit::TestCase
"elf" => "elves",
"information" => "information",
"equipment" => "equipment",
- "bus" => "buses",
+ "bus" => "buses",
+ "status" => "statuses",
"mouse" => "mice",
"louse" => "lice",