This commit is contained in:
Rafael Mendonça França 2012-02-01 17:14:00 -02:00
parent 33d8b62c52
commit 9b1d54e292
2 changed files with 3 additions and 3 deletions

@ -11,7 +11,7 @@ en:
taken: "has already been taken"
record_invalid: "Validation failed: %{errors}"
restrict_dependent_destroy:
one: "Cannot delete record because a dependent %{record} exist"
one: "Cannot delete record because a dependent %{record} exists"
many: "Cannot delete record because dependent %{record} exist"
# Append your own errors here or at the model/attributes scope.

@ -184,7 +184,7 @@ def test_dependence_with_restrict_with_dependent_restrict_raises_config_set_to_f
firm.destroy
assert !firm.errors.empty?
assert_equal "Cannot delete record because a dependent account exist", firm.errors[:base].first
assert_equal "Cannot delete record because a dependent account exists", firm.errors[:base].first
assert RestrictedFirm.exists?(:name => 'restrict')
assert firm.account.present?
ensure
@ -207,7 +207,7 @@ def test_dependence_with_restrict_with_dependent_restrict_raises_config_set_to_f
firm.destroy
assert !firm.errors.empty?
assert_equal "Cannot delete record because a dependent account model exist", firm.errors[:base].first
assert_equal "Cannot delete record because a dependent account model exists", firm.errors[:base].first
assert RestrictedFirm.exists?(:name => 'restrict')
assert firm.account.present?
ensure