blob: 584f009e847f06468733adf3fdcfe1dc256c7740 (
plain) (
blame)
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
|
# encoding: utf-8
require 'cases/helper'
require 'cases/tests_database'
require 'models/topic'
require 'models/person'
class ExclusionValidationTest < ActiveModel::TestCase
include ActiveModel::TestsDatabase
include ActiveModel::ValidationsRepairHelper
repair_validations(Topic)
def test_validates_exclusion_of
Topic.validates_exclusion_of( :title, :in => %w( abe monkey ) )
assert Topic.create("title" => "something", "content" => "abc").valid?
assert !Topic.create("title" => "monkey", "content" => "abc").valid?
end
def test_validates_exclusion_of_with_formatted_message
Topic.validates_exclusion_of( :title, :in => %w( abe monkey ), :message => "option {{value}} is restricted" )
assert Topic.create("title" => "something", "content" => "abc")
t = Topic.create("title" => "monkey")
assert !t.valid?
assert t.errors[:title].any?
assert_equal ["option monkey is restricted"], t.errors[:title]
end
def test_validates_exclusion_of_for_ruby_class
repair_validations(Person) do
Person.validates_exclusion_of :karma, :in => %w( abe monkey )
p = Person.new
p.karma = "abe"
assert p.invalid?
assert_equal ["is reserved"], p.errors[:karma]
p.karma = "Lifo"
assert p.valid?
end
end
end
|