Sha256: c0f02eba4cf79bff50cfca2c0f37cbb9991ade9f0913efb3bd3dfe4e3aa0cc46

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

require 'helper'

class TestSlimTextInterpolation < TestSlim
  def test_interpolation_in_attribute
    source = %q{
<p id="a#{id_helper}b">= hello_world
}

    assert_html '<p id="anoticeb">Hello World from @env</p>', source
  end

  def test_nested_interpolation_in_attribute
    source = %q{
<p id="#{"abc#{1+1}" + "("}">= hello_world
}

    assert_html '<p id="abc2(">Hello World from @env</p>', source
  end

  def test_interpolation_in_text
    source = %q{
<p
 #{hello_world} with "quotes"
<p

 >A message from the compiler: #{hello_world}
}

    assert_html '<p>Hello World from @env with "quotes"</p><p>A message from the compiler: Hello World from @env</p>', source
  end

  def test_interpolation_in_tag
    source = %q{
<p>#{hello_world}
}

    assert_html '<p>Hello World from @env</p>', source
  end

  def test_escape_interpolation
    source = %q{
<p>\\#{hello_world}
}

    assert_html '<p>#{hello_world}</p>', source
  end

  def test_complex_interpolation
    source = %q{
<p>Message: #{message('hello', "user #{output_number}")}
}

    assert_html '<p>Message: hello user 1337</p>', source
  end

  def test_interpolation_with_escaping
    source = %q{
#{evil_method}
}

    assert_html '&lt;script&gt;do_something_evil();&lt;&#47;script&gt;', source
  end

  def test_interpolation_without_escaping
    source = %q{
#{{evil_method}}
}

    assert_html '<script>do_something_evil();</script>', source
  end

  def test_interpolation_with_escaping_and_delimiter
    source = %q{
#{(evil_method)}
}
    assert_html '&lt;script&gt;do_something_evil();&lt;&#47;script&gt;', source
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hamlet-0.4.1 test/slim/test_text_interpolation.rb
hamlet-0.4.0 test/slim/test_text_interpolation.rb
hamlet-0.3.0 test/slim/test_text_interpolation.rb