diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-05 00:43:51 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-05 00:43:51 -0300 |
commit | 4f8777333d6afe15f821f59691f95aa5003e48cb (patch) | |
tree | 10188041ab2fe0aaddf2b7d86972dd1d7a8d81fe /actionpack/test/template | |
parent | 8bffd6c6aeee8351d2a52257cf235ccd08f7fd06 (diff) | |
download | rails-4f8777333d6afe15f821f59691f95aa5003e48cb.tar.gz rails-4f8777333d6afe15f821f59691f95aa5003e48cb.tar.bz2 rails-4f8777333d6afe15f821f59691f95aa5003e48cb.zip |
Remove empty test
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/record_tag_helper_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb index 150e44b864..81a1642ed8 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -73,9 +73,6 @@ class RecordTagHelperTest < ActionView::TestCase assert_dom_equal expected, actual end - def test_content_tag_for_collection_is_html_safe - 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 } |