diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-10-08 14:13:36 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-10-08 14:13:49 -0500 |
commit | 3b6bdfc1050a83c6339421257d60a6163bf3c687 (patch) | |
tree | 8092062ff62656f5b4df23932fcb735e6244cda5 /actionpack/test/template | |
parent | 665c7ad29d5614b8f5535d317f1dd2803ddcaa7d (diff) | |
download | rails-3b6bdfc1050a83c6339421257d60a6163bf3c687.tar.gz rails-3b6bdfc1050a83c6339421257d60a6163bf3c687.tar.bz2 rails-3b6bdfc1050a83c6339421257d60a6163bf3c687.zip |
API change: content_tag_for outputs prefixed class name
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/record_tag_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 = %(<ul class="post" id="archived_post_45"></ul>) + expected = %(<ul class="archived_post" id="archived_post_45"></ul>) actual = content_tag_for(:ul, @post, :archived) { } assert_dom_equal expected, actual end |