aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-02 07:52:29 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-02 07:52:29 +0000
commit20d27f6b743bc3425a75b0d07fd79b76e68d37e8 (patch)
tree1a4358d95eb00e48442382e0a6e5f7dc37c4d0ba /activerecord/test
parent9ac02777e7fc81369e5a837124aff51a7ca03d2b (diff)
downloadrails-20d27f6b743bc3425a75b0d07fd79b76e68d37e8.tar.gz
rails-20d27f6b743bc3425a75b0d07fd79b76e68d37e8.tar.bz2
rails-20d27f6b743bc3425a75b0d07fd79b76e68d37e8.zip
Fixed validates_numericality_of to work with overrided getter-method when :allow_nil is on #1316 [raidel@onemail.at]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1603 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rwxr-xr-xactiverecord/test/validations_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/validations_test.rb b/activerecord/test/validations_test.rb
index 8a918e2255..afd11c6d62 100755
--- a/activerecord/test/validations_test.rb
+++ b/activerecord/test/validations_test.rb
@@ -319,6 +319,13 @@ class ValidationsTest < Test::Unit::TestCase
assert Topic.create("title" => nil, "content" => "abc").valid?
end
+ def test_numericality_with_allow_nil_and_getter_method
+ Developer.validates_numericality_of( :salary, :allow_nil => true)
+ developer = Developer.new("name" => "michael", "salary" => nil)
+ developer.instance_eval("def salary; read_attribute('salary') ? read_attribute('salary') : 100000; end")
+ assert developer.valid?
+ end
+
def test_validates_exclusion_of
Topic.validates_exclusion_of( :title, :in => %w( abe monkey ) )