diff options
author | Robin Mehner <robin@coding-robin.de> | 2014-06-22 12:22:27 +0200 |
---|---|---|
committer | Robin Mehner <robin@coding-robin.de> | 2014-06-22 12:22:27 +0200 |
commit | 64a05a928c50a770c6562ac1840772c5d6ad6f53 (patch) | |
tree | 9b880082247bc0e31a73690a1614f2e04333501c /activemodel/test | |
parent | c2d5b31073d9e0dbe779a74c0741e3fea79840fa (diff) | |
download | rails-64a05a928c50a770c6562ac1840772c5d6ad6f53.tar.gz rails-64a05a928c50a770c6562ac1840772c5d6ad6f53.tar.bz2 rails-64a05a928c50a770c6562ac1840772c5d6ad6f53.zip |
`only_integer` of `NumericalityValidator` now allows procs and symbols
Diffstat (limited to 'activemodel/test')
-rw-r--r-- | activemodel/test/cases/validations/numericality_validation_test.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/activemodel/test/cases/validations/numericality_validation_test.rb b/activemodel/test/cases/validations/numericality_validation_test.rb index e1657407cf..3834d327ea 100644 --- a/activemodel/test/cases/validations/numericality_validation_test.rb +++ b/activemodel/test/cases/validations/numericality_validation_test.rb @@ -50,6 +50,21 @@ class NumericalityValidationTest < ActiveModel::TestCase valid!(NIL + INTEGERS) end + def test_validates_numericality_of_with_integer_only_and_symbol_as_value + Topic.validates_numericality_of :approved, only_integer: :condition_is_true_but_its_not + + invalid!(NIL + BLANK + JUNK) + valid!(FLOATS + INTEGERS + BIGDECIMAL + INFINITY) + end + + def test_validates_numericality_of_with_integer_only_and_proc_as_value + Topic.send(:define_method, :allow_only_integers?, lambda { false }) + Topic.validates_numericality_of :approved, only_integer: Proc.new {|topic| topic.allow_only_integers? } + + invalid!(NIL + BLANK + JUNK) + valid!(FLOATS + INTEGERS + BIGDECIMAL + INFINITY) + end + def test_validates_numericality_with_greater_than Topic.validates_numericality_of :approved, greater_than: 10 |