mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d52b4a6645
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4935 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
12 lines
No EOL
349 B
Ruby
12 lines
No EOL
349 B
Ruby
module ActionController
|
|
module Assertions
|
|
module ModelAssertions
|
|
# ensures that the passed record is valid by active record standards. returns the error messages if not
|
|
def assert_valid(record)
|
|
clean_backtrace do
|
|
assert record.valid?, record.errors.full_messages.join("\n")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |