From 71396669265596dffdc729c0f7f6a343100e99c8 Mon Sep 17 00:00:00 2001 From: Geoff Garside Date: Wed, 24 Feb 2010 18:26:05 +0000 Subject: [PATCH] Add test case to show error_message_on returning incorrect output for a method with no errors --- .../test/template/active_model_helper_test.rb | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/actionpack/test/template/active_model_helper_test.rb b/actionpack/test/template/active_model_helper_test.rb index 3e01ae7..b3c53ab 100644 --- a/actionpack/test/template/active_model_helper_test.rb +++ b/actionpack/test/template/active_model_helper_test.rb @@ -252,6 +252,10 @@ class ActiveModelHelperTest < ActionView::TestCase assert_dom_equal "
beforecan't be emptyafter
", error_message_on(:post, :author_name, :css_class => 'differentError', :prepend_text => 'before', :append_text => 'after') end + def test_error_message_on_handles_empty_errors + assert_equal "", error_message_on(@post, :tag) + end + def test_error_messages_for_many_objects assert_dom_equal %(

2 errors prohibited this post from being saved

There were problems with the following fields:

), error_messages_for("post", "user") -- 1.6.4.2