From 22ffc3dceaa83bcbfcfa541cc992346e6d428fbf Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Tue, 17 Jan 2012 23:04:18 -0200 Subject: Cleanup persisted setup for model --- actionpack/test/template/record_tag_helper_test.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb index 97dfb473d2..127e1b6bdd 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -11,6 +11,7 @@ class Post @body = nil super + @persisted = true yield self if block_given? end @@ -31,7 +32,6 @@ class RecordTagHelperTest < ActionView::TestCase def setup super @post = Post.new - @post.persisted = true end def test_content_tag_for @@ -79,16 +79,16 @@ class RecordTagHelperTest < ActionView::TestCase end def test_content_tag_for_collection - 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 } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!" } + post_2 = Post.new { |post| post.id = 102; post.body = "World!" } 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 { |post| post.id = 101; post.body = "Hello!"; post.persisted = true } - post_2 = Post.new { |post| post.id = 102; post.body = "World!"; post.persisted = true } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!" } + post_2 = Post.new { |post| post.id = 102; post.body = "World!" } expected = %(
    Hello!
    \n
    World!
    ) actual = div_for([post_1, post_2]) { |post| post.body } assert_dom_equal expected, actual @@ -100,8 +100,8 @@ class RecordTagHelperTest < ActionView::TestCase end def test_content_tag_for_collection_is_html_safe - 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 } + post_1 = Post.new { |post| post.id = 101; post.body = "Hello!" } + post_2 = Post.new { |post| post.id = 102; post.body = "World!" } result = content_tag_for(:li, [post_1, post_2]) { |post| post.body } assert result.html_safe? end -- cgit v1.2.3