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/app/models/leap_ca | |
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/app/models/leap_ca')
-rw-r--r-- | certs/app/models/leap_ca/cert.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/certs/app/models/leap_ca/cert.rb b/certs/app/models/leap_ca/cert.rb index 7e4b49a..9d4f15e 100644 --- a/certs/app/models/leap_ca/cert.rb +++ b/certs/app/models/leap_ca/cert.rb @@ -21,7 +21,8 @@ module LeapCA validates :key, :presence => true validates :cert, :presence => true - validates :random, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 1} + validates :random, :presence => true + validates :random, :numericality => {:greater_than => 0, :less_than => 1} design do view :by_random |