summaryrefslogtreecommitdiff
path: root/certs/app
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-12-17 11:07:42 +0100
committerAzul <azul@leap.se>2012-12-17 11:07:42 +0100
commita8f5a1ec486d5ee378f7b820c9f2c046e5c03672 (patch)
tree16fe85a62874c51b12a1ea05626c8fe9f06db7c9 /certs/app
parentfa6992640a83396980112fd012e2b3a58f10861b (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')
-rw-r--r--certs/app/models/leap_ca/cert.rb3
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