From f5cba5e6b1f4ed830737c2f4716c88a245bce5c7 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Sat, 3 Oct 2009 22:14:50 -0500 Subject: Moved shared form helper models into fake_models --- actionpack/test/template/record_tag_helper_test.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'actionpack/test/template/record_tag_helper_test.rb') diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb index 4144fea678..77d1374020 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -1,4 +1,5 @@ require 'abstract_unit' +require 'controller/fake_models' class Post extend ActiveModel::Naming -- cgit v1.2.3 From 3b6bdfc1050a83c6339421257d60a6163bf3c687 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Thu, 8 Oct 2009 14:13:36 -0500 Subject: API change: content_tag_for outputs prefixed class name --- actionpack/test/template/record_tag_helper_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/test/template/record_tag_helper_test.rb') diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb index 77d1374020..1cd18c0692 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -27,7 +27,7 @@ class RecordTagHelperTest < ActionView::TestCase end def test_content_tag_for_prefix - expected = %() + expected = %() actual = content_tag_for(:ul, @post, :archived) { } assert_dom_equal expected, actual end -- cgit v1.2.3