diff options
author | Azul <azul@leap.se> | 2012-12-17 11:07:42 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-17 11:07:42 +0100 |
commit | a8f5a1ec486d5ee378f7b820c9f2c046e5c03672 (patch) | |
tree | 16fe85a62874c51b12a1ea05626c8fe9f06db7c9 /certs/test/unit | |
parent | fa6992640a83396980112fd012e2b3a58f10861b (diff) |
adopted test to before_validation callback
The before validation hook will overwrite whatever is in random on create. This is what we want - just need to test it properly
Diffstat (limited to 'certs/test/unit')
-rw-r--r-- | certs/test/unit/cert_test.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/certs/test/unit/cert_test.rb b/certs/test/unit/cert_test.rb index e41edd7..0b21d0b 100644 --- a/certs/test/unit/cert_test.rb +++ b/certs/test/unit/cert_test.rb @@ -10,8 +10,18 @@ class CertTest < ActiveSupport::TestCase assert @sample.valid? end + test "setting random on create validation" do + @sample.random = "asdf" + assert @sample.valid? + assert @sample.random.is_a? Float + assert @sample.random >= 0 + assert @sample.random < 1 + end + test "validates random" do - [-1, 1, nil, "asdf"].each do |invalid| + @sample.save # make sure we are past the on_create + assert @sample.valid? + ["asdf", 1, 2, -0.1, nil, "asdf"].each do |invalid| @sample.random = invalid assert !@sample.valid?, "#{invalid} should not be a valid value for random" end |