aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/developer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/test/models/developer.rb')
-rw-r--r--activemodel/test/models/developer.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activemodel/test/models/developer.rb b/activemodel/test/models/developer.rb
new file mode 100644
index 0000000000..5e6eefeed1
--- /dev/null
+++ b/activemodel/test/models/developer.rb
@@ -0,0 +1,6 @@
+class Developer < ActiveRecord::Base
+ validates_inclusion_of :salary, :in => 50000..200000
+ validates_length_of :name, :within => 3..20
+
+ attr_accessor :name_confirmation
+end