require 'helper' class TestSlimCodeEvaluation < TestSlim def test_render_with_call_to_set_attributes source = %q{ p id="#{id_helper}" class="hello world" = hello_world } assert_html '

Hello World from @env

', source end def test_render_with_call_to_set_custom_attributes source = %q{ p data-id="#{id_helper}" data-class="hello world" = hello_world } assert_html '

Hello World from @env

', source end def test_render_with_call_to_set_attributes_and_call_to_set_content source = %q{ p id="#{id_helper}" class="hello world" = hello_world } assert_html '

Hello World from @env

', source end def test_render_with_parameterized_call_to_set_attributes_and_call_to_set_content source = %q{ p id="#{id_helper}" class="hello world" = hello_world("Hello Ruby!") } assert_html '

Hello Ruby!

', source end def test_render_with_spaced_parameterized_call_to_set_attributes_and_call_to_set_content source = %q{ p id="#{id_helper}" class="hello world" = hello_world "Hello Ruby!" } assert_html '

Hello Ruby!

', source end def test_render_with_spaced_parameterized_call_to_set_attributes_and_call_to_set_content_2 source = %q{ p id="#{id_helper}" class="hello world" = hello_world "Hello Ruby!", :dummy => "value" } assert_html '

Hello Ruby!dummy value

', source end def test_hash_call_in_attribute source = %q{ p id="#{hash[:a]}" Test it } assert_html '

Test it

', source end def test_method_call_in_attribute_without_quotes source = %q{ form action=action_path(:page, :save) method='post' } assert_html '
', source end def test_method_call_in_delimited_attribute_without_quotes source = %q{ form(action=action_path(:page, :save) method='post') } assert_html '
', source end def test_method_call_in_delimited_attribute_without_quotes2 source = %q{ form(method='post' action=action_path(:page, :save)) } assert_html '
', source end def test_hash_call_in_attribute_without_quotes source = %q{ p id=hash[:a] Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute source = %q{ p(id=hash[:a]) Test it } assert_html '

Test it

', source end def test_hash_call_in_attribute_with_ruby_evaluation source = %q{ p id={hash[:a] + hash[:a]} Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute_with_ruby_evaluation source = %q{ p(id=(hash[:a] + hash[:a])) Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute_with_ruby_evaluation_2 source = %q{ p[id=(hash[:a] + hash[:a])] Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute_with_ruby_evaluation_3 source = %q{ p(id=[hash[:a] + hash[:a]]) Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute_with_ruby_evaluation_4 source = %q{ p(id=[hash[:a] + hash[:a]] class=[hash[:a]]) Test it } assert_html '

Test it

', source end def test_hash_call_in_delimited_attribute_with_ruby_evaluation_5 source = %q{ p(id=hash[:a] class=[hash[:a]]) Test it } assert_html '

Test it

', source end def test_computation_in_attribute source = %q{ p id=(1 + 1)*5 Test it } assert_html '

Test it

', source end def test_interpolation_in_text source = %q{ p | #{hello_world} with "quotes" p | A message from the compiler: #{hello_world} } assert_html '

Hello World from @env with "quotes"

A message from the compiler: Hello World from @env

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

Hello World from @env

', source end def test_number_type_interpolation source = %q{ p = output_number } assert_html '

1337

', source end def test_ternary_operation_in_attribute source = %q{ p id="#{(false ? 'notshown' : 'shown')}" = output_number } assert_html '

1337

', source end def test_class_attribute_merging source = %{ .alpha class="beta" Test it } assert_html '
Test it
', source end end