1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
module Functional
class ValidatesLengthOfTest < Test::Unit::TestCase
test "given short value, when validated, then error is in the objects error collection" do
klass = Class.new do
include Validatable
attr_accessor :name
validates_length_of :name, :minimum => 2
end
instance = klass.new
instance.valid?
assert_equal "is invalid", instance.errors.on(:name)
end
test "given is constraint, when validated, then error is in the objects error collection" do
klass = Class.new do
include Validatable
attr_accessor :name
validates_length_of :name, :is => 2
end
instance = klass.new
instance.valid?
assert_equal "is invalid", instance.errors.on(:name)
end
test "given is constraint is met, when validated, then valid is true" do
klass = Class.new do
include Validatable
attr_accessor :name
validates_length_of :name, :is => 2
end
instance = klass.new
instance.name = "bk"
assert_equal true, instance.valid?
end
test "given within constraint, when validated, then error is in the objects error collection" do
klass = Class.new do
include Validatable
attr_accessor :name
validates_length_of :name, :within => 2..4
end
instance = klass.new
instance.valid?
assert_equal "is invalid", instance.errors.on(:name)
end
test "given within constraint, when validated, then valid is true" do
klass = Class.new do
include Validatable
attr_accessor :name
validates_length_of :name, :within => 2..4
end
instance = klass.new
instance.name = "bk"
assert_equal true, instance.valid?
end
end
end
|