diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-03-12 21:10:19 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-03-12 21:12:44 -0200 |
commit | 157c37f55854a17fcb50e77b7636fab01773df3c (patch) | |
tree | 2a09e280afd4ff8a31b95e37c0198ec041a787fc /activemodel/test/cases | |
parent | f48d3d4df6c8ff6ab544f5fe384af2a0552984d7 (diff) | |
download | rails-157c37f55854a17fcb50e77b7636fab01773df3c.tar.gz rails-157c37f55854a17fcb50e77b7636fab01773df3c.tar.bz2 rails-157c37f55854a17fcb50e77b7636fab01773df3c.zip |
Refactor length validation
Diffstat (limited to 'activemodel/test/cases')
-rw-r--r-- | activemodel/test/cases/validations/length_validation_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/test/cases/validations/length_validation_test.rb b/activemodel/test/cases/validations/length_validation_test.rb index 5e4f4f5cae..f02514639b 100644 --- a/activemodel/test/cases/validations/length_validation_test.rb +++ b/activemodel/test/cases/validations/length_validation_test.rb @@ -341,14 +341,14 @@ class LengthValidationTest < ActiveModel::TestCase assert t.errors[:content].any? assert_equal ["Your essay must be at least 5 words."], t.errors[:content] end - + def test_validates_length_of_for_fixnum Topic.validates_length_of(:approved, :is => 4) - + t = Topic.new("title" => "uhohuhoh", "content" => "whatever", :approved => 1) assert t.invalid? assert t.errors[:approved].any? - + t = Topic.new("title" => "uhohuhoh", "content" => "whatever", :approved => 1234) assert t.valid? end |