aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-02-27 21:14:11 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2011-02-27 21:23:52 -0200
commitacf0688fdd85a6d6ac278446e81f365239acc198 (patch)
tree2af35df0b99f7be419d7c237e55445699542051f /activemodel/test/models
parent86ad8a6c877636b4df7966233dff7fea377b0790 (diff)
downloadrails-acf0688fdd85a6d6ac278446e81f365239acc198.tar.gz
rails-acf0688fdd85a6d6ac278446e81f365239acc198.tar.bz2
rails-acf0688fdd85a6d6ac278446e81f365239acc198.zip
failing test for i18n key collision with namespaced models
Diffstat (limited to 'activemodel/test/models')
-rw-r--r--activemodel/test/models/person.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activemodel/test/models/person.rb b/activemodel/test/models/person.rb
index eb84f7a27d..7b7e8feebc 100644
--- a/activemodel/test/models/person.rb
+++ b/activemodel/test/models/person.rb
@@ -9,6 +9,10 @@ class Person
end
end
+class Person::Gender
+ extend ActiveModel::Translation
+end
+
class Child < Person
end