aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models
diff options
context:
space:
mode:
authorRodrigo Rosenfeld Rosas <rr_rosas@yahoo.com.br>2010-09-24 20:41:12 +0200
committerJosé Valim <jose.valim@gmail.com>2010-09-24 20:41:12 +0200
commit8d30193b08bd2321a7a78a1f481bd5e4d4d45557 (patch)
tree7e9c8458bd6cb4b2f0d832897197c9770d590342 /activemodel/test/models
parentf625b87f241a6a002274bd01750796985d6e0d8d (diff)
downloadrails-8d30193b08bd2321a7a78a1f481bd5e4d4d45557.tar.gz
rails-8d30193b08bd2321a7a78a1f481bd5e4d4d45557.tar.bz2
rails-8d30193b08bd2321a7a78a1f481bd5e4d4d45557.zip
Properly interpolate i18n keys in modules [#5572 state:resolved]
Diffstat (limited to 'activemodel/test/models')
-rw-r--r--activemodel/test/models/person.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activemodel/test/models/person.rb b/activemodel/test/models/person.rb
index cf16a38618..eb84f7a27d 100644
--- a/activemodel/test/models/person.rb
+++ b/activemodel/test/models/person.rb
@@ -11,3 +11,8 @@ end
class Child < Person
end
+
+module PersonModule
+ class Person < ::Person
+ end
+end