1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

All these tests are passing now

This commit is contained in:
Rafael Mendonça França 2014-07-15 13:59:10 -03:00
parent c0026d5ba1
commit f5426315d9
3 changed files with 0 additions and 7 deletions

View file

@ -2131,8 +2131,6 @@ class DateHelperTest < ActionView::TestCase
end
def test_time_select_with_html_options_within_fields_for
skip "Pending. Output error: 'unknown encoding ASCII-8BIT' makes Loofah return an empty string. Related: https://github.com/sparklemotion/nokogiri/issues/553"
@post = Post.new
@post.written_on = Time.local(2004, 6, 15, 15, 16, 35)
@ -2370,7 +2368,6 @@ class DateHelperTest < ActionView::TestCase
end
def test_datetime_select_with_html_options_within_fields_for
skip "Pending. Output error: 'unknown encoding ASCII-8BIT' makes Loofah return an empty string. Related: https://github.com/sparklemotion/nokogiri/issues/553"
@post = Post.new
@post.updated_at = Time.local(2004, 6, 15, 16, 35)
@ -2622,7 +2619,6 @@ class DateHelperTest < ActionView::TestCase
end
def test_datetime_select_within_fields_for_with_options_index
skip "Pending. Output error: 'unknown encoding ASCII-8BIT' makes Loofah return an empty string. Related: https://github.com/sparklemotion/nokogiri/issues/553"
@post = Post.new
@post.updated_at = Time.local(2004, 6, 15, 16, 35)
id = 456

View file

@ -2921,8 +2921,6 @@ class FormHelperTest < ActionView::TestCase
end
def test_fields_for_with_labelled_builder
skip "Pending. I think that there's an output error: 'unknown encoding ASCII-8BIT' in here, which makes Loofah return an empty string. Related: https://github.com/sparklemotion/nokogiri/issues/553"
output_buffer = fields_for(:post, @post, builder: LabelledFormBuilder) do |f|
concat f.text_field(:title)
concat f.text_area(:body)

View file

@ -190,7 +190,6 @@ class TextHelperTest < ActionView::TestCase
end
def test_highlight_pending
skip "Pending. Nokogiri parses a blank string, sees no elements and then returns ''"
assert_equal ' ', highlight(' ', 'blank text is returned verbatim')
end