rails--rails/activemodel/test/cases/validations/presence_validation_test.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

# encoding: utf-8
require 'cases/helper'
2009-03-20 16:02:12 +00:00
require 'cases/tests_database'
require 'models/topic'
class PresenceValidationTest < ActiveModel::TestCase
2009-03-20 16:02:12 +00:00
include ActiveModel::TestsDatabase
include ActiveModel::ValidationsRepairHelper
repair_validations(Topic)
def test_validate_presences
Topic.validates_presence_of(:title, :content)
t = Topic.create
assert !t.save
assert_equal ["can't be blank"], t.errors[:title]
assert_equal ["can't be blank"], t.errors[:content]
t.title = "something"
t.content = " "
assert !t.save
assert_equal ["can't be blank"], t.errors[:content]
t.content = "like stuff"
assert t.save
end
def test_validates_presence_of_with_custom_message_using_quotes
repair_validations(Developer) do
Developer.validates_presence_of :non_existent, :message=> "This string contains 'single' and \"double\" quotes"
d = Developer.new
d.name = "Joe"
assert !d.valid?
assert_equal ["This string contains 'single' and \"double\" quotes"], d.errors[:non_existent]
end
end
end