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

Add Error#full_message test; Fix typos

Introduce test on Error#full_message for attribute with underscores; Fix
some typos
This commit is contained in:
Vipul A M 2013-03-22 10:00:17 +05:30
parent 0d3cb003de
commit 24fee97581
3 changed files with 3 additions and 2 deletions

View file

@ -225,6 +225,7 @@ class ErrorsTest < ActiveModel::TestCase
test 'full_message should return the given message with the attribute name included' do
person = Person.new
assert_equal "name can not be blank", person.errors.full_message(:name, "can not be blank")
assert_equal "name_test can not be blank", person.errors.full_message(:name_test, "can not be blank")
end
test 'should return a JSON hash representation of the errors' do

View file

@ -1024,7 +1024,7 @@ class BasicsTest < ActiveRecord::TestCase
Joke.reset_sequence_name
end
def test_dont_clear_inheritnce_column_when_setting_explicitly
def test_dont_clear_inheritance_column_when_setting_explicitly
Joke.inheritance_column = "my_type"
before_inherit = Joke.inheritance_column

View file

@ -806,7 +806,7 @@ module NestedAttributesOnACollectionAssociationTests
assert_nothing_raised(NoMethodError) { @pirate.save! }
end
def test_numeric_colum_changes_from_zero_to_no_empty_string
def test_numeric_column_changes_from_zero_to_no_empty_string
Man.accepts_nested_attributes_for(:interests)
repair_validations(Interest) do