require 'helper' class TestSlimHtmlStructure < TestSlim def test_simple_render source = %q{ html head title Simple Test Title body p Hello World, meet Slim. } assert_html 'Simple Test Title

Hello World, meet Slim.

', source end def test_html_namespaces source = %q{ html:body html:p html:id="test" Text } assert_html 'Text', source end def test_doctype source = %q{ ! doctype 5 html } assert_html '', source end def test_render_with_shortcut_attributes source = %q{ h1#title This is my title #notice.hello.world = hello_world } assert_html '

This is my title

Hello World from @env
', source end def test_render_with_text_block source = %q{ p ` Lorem ipsum dolor sit amet, consectetur adipiscing elit. } assert_html '

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

', source end def test_render_with_text_block_with_subsequent_markup source = %q{ p ` Lorem ipsum dolor sit amet, consectetur adipiscing elit. p Some more markup } assert_html '

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Some more markup

', source end def test_nested_text source = %q{ p | This is line one. This is line two. This is line three. This is line four. p This is a new paragraph. } assert_html '

This is line one. This is line two. This is line three. This is line four.

This is a new paragraph.

', source end def test_nested_text_with_nested_html_one_same_line source = %q{ p | This is line one. This is line two. span.bold This is a bold line in the paragraph. | This is more content. } assert_html '

This is line one. This is line two.This is a bold line in the paragraph. This is more content.

', source end def test_nested_text_with_nested_html_one_same_line2 source = %q{ p |This is line one. This is line two. span.bold This is a bold line in the paragraph. | This is more content. } assert_html '

This is line one. This is line two.This is a bold line in the paragraph. This is more content.

', source end def test_nested_text_with_nested_html source = %q{ p | This is line one. This is line two. This is line three. This is line four. span.bold This is a bold line in the paragraph. | This is more content. } assert_html '

This is line one. This is line two. This is line three. This is line four.This is a bold line in the paragraph. This is more content.

', source end def test_simple_paragraph_with_padding source = %q{ p There will be 3 spaces in front of this line. } assert_html '

There will be 3 spaces in front of this line.

', source end def test_paragraph_with_nested_text source = %q{ p This is line one. This is line two. } assert_html '

This is line one. This is line two.

', source end def test_paragraph_with_padded_nested_text source = %q{ p This is line one. This is line two. } assert_html '

This is line one. This is line two.

', source end def test_paragraph_with_attributes_and_nested_text source = %q{ p#test class="paragraph" This is line one. This is line two. } assert_html '

This is line one.This is line two.

', source end def test_output_code_with_leading_spaces source = %q{ p= hello_world p = hello_world p = hello_world } assert_html '

Hello World from @env

Hello World from @env

Hello World from @env

', source end def test_single_quoted_attributes source = %q{ p class='underscored_class_name' = output_number } assert_html '

1337

', source end def test_nonstandard_attributes source = %q{ p id="dashed-id" class="underscored_class_name" = output_number } assert_html '

1337

', source end def test_nonstandard_shortcut_attributes source = %q{ p#dashed-id.underscored_class_name = output_number } assert_html '

1337

', source end def test_dashed_attributes source = %q{ p data-info="Illudium Q-36" = output_number } assert_html '

1337

', source end def test_dashed_attributes_with_shortcuts source = %q{ p#marvin.martian data-info="Illudium Q-36" = output_number } assert_html '

1337

', source end def test_parens_around_attributes source = %q{ p(id="marvin" class="martian" data-info="Illudium Q-36") = output_number } assert_html '

1337

', source end def test_square_brackets_around_attributes source = %q{ p[id="marvin" class="martian" data-info="Illudium Q-36"] = output_number } assert_html '

1337

', source end def test_parens_around_attributes_with_equal_sign_snug_to_right_paren source = %q{ p(id="marvin" class="martian" data-info="Illudium Q-36")= output_number } assert_html '

1337

', source end end