aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/person.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/test/models/person.rb')
-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 d98420f900..fad29a51ec 100644
--- a/activemodel/test/models/person.rb
+++ b/activemodel/test/models/person.rb
@@ -1,5 +1,9 @@
class Person
include ActiveModel::Validations
+ extend ActiveModel::Translation
attr_accessor :title, :karma
end
+
+class Child < Person
+end