1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Covering untested methods for ActiveModel::Errors

This commit is contained in:
Attila Domokos 2013-01-10 14:49:47 -05:00
parent 8d926f58d9
commit 7171f9cc8f

View file

@ -54,6 +54,59 @@ class ErrorsTest < ActiveModel::TestCase
assert errors.has_key?(:foo), 'errors should have key :foo'
end
test "should be able to clear the errors" do
person = Person.new
person.validate!
assert_equal 1, person.errors.count
person.errors.clear
assert person.errors.empty?
end
test "get returns the error by the provided key" do
errors = ActiveModel::Errors.new(self)
errors[:foo] = "omg"
assert_equal ["omg"], errors.get(:foo)
end
test "sets the error with the provided key" do
errors = ActiveModel::Errors.new(self)
errors.set(:foo, "omg")
assert_equal({ foo: "omg" }, errors.messages)
end
test "values returns an array of messages" do
errors = ActiveModel::Errors.new(self)
errors.set(:foo, "omg")
errors.set(:baz, "zomg")
assert_equal ["omg", "zomg"], errors.values
end
test "keys returns the error keys" do
errors = ActiveModel::Errors.new(self)
errors.set(:foo, "omg")
errors.set(:baz, "zomg")
assert_equal [:foo, :baz], errors.keys
end
test "as_json returns a json formatted representation of the errors hash" do
person = Person.new
person.validate!
assert_equal({ name: ["can not be nil"] }, person.errors.as_json)
end
test "as_json with :full_messages option" do
person = Person.new
person.validate!
assert_equal({ name: ["name can not be nil"] }, person.errors.as_json(full_messages: true))
end
test "should return true if no errors" do
person = Person.new
person.errors[:foo]