diff options
Diffstat (limited to 'activemodel/test/models')
-rw-r--r-- | activemodel/test/models/person.rb | 4 |
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 |