From 53381be007785369f5f3c41a19693a2ec0d43e31 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Tue, 17 Jan 2012 22:51:27 -0200 Subject: Mimic AR models yielding when building new records, avoid using tap --- actionpack/test/template/record_tag_helper_test.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb index a349f803de..97dfb473d2 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -10,6 +10,8 @@ class Post @id = nil @body = nil super + + yield self if block_given? end def id @@ -77,16 +79,16 @@ class RecordTagHelperTest < ActionView::TestCase end def test_content_tag_for_collection - post_1 = Post.new.tap { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } - post_2 = Post.new.tap { |post| post.id = 102; post.body = "World!"; post.persisted = true } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } + post_2 = Post.new { |post| post.id = 102; post.body = "World!"; post.persisted = true } expected = %(
  • Hello!
  • \n
  • World!
  • ) actual = content_tag_for(:li, [post_1, post_2]) { |post| post.body } assert_dom_equal expected, actual end def test_div_for_collection - post_1 = Post.new.tap { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } - post_2 = Post.new.tap { |post| post.id = 102; post.body = "World!"; post.persisted = true } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } + post_2 = Post.new { |post| post.id = 102; post.body = "World!"; post.persisted = true } expected = %(
    Hello!
    \n
    World!
    ) actual = div_for([post_1, post_2]) { |post| post.body } assert_dom_equal expected, actual @@ -98,8 +100,8 @@ class RecordTagHelperTest < ActionView::TestCase end def test_content_tag_for_collection_is_html_safe - post_1 = Post.new.tap { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } - post_2 = Post.new.tap { |post| post.id = 102; post.body = "World!"; post.persisted = true } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } + post_2 = Post.new { |post| post.id = 102; post.body = "World!"; post.persisted = true } result = content_tag_for(:li, [post_1, post_2]) { |post| post.body } assert result.html_safe? end -- cgit v1.2.3