Sha256: 096de3ef6d84b89620e2eef7f1064925636d874d76b0ec217e472702294f2ce9

Contents?: true

Size: 1.03 KB

Versions: 13

Compression:

Stored size: 1.03 KB

Contents

require 'spec_helper'

RSpec.describe 'Sanitize rendering', type: :render do
  it 'parses sanitized script' do
    # Default in faml
    expect(render_string('&= "hello<p>unescape</p>world"')).to eq("hello&lt;p&gt;unescape&lt;/p&gt;world\n")
    expect(render_string(<<HAML)).to eq("<span>\nhello&lt;p&gt;unescape&lt;/p&gt;world\n</span>\n")
%span
  &= "hello<p>unescape</p>world"
HAML
  end

  it 'ignores single sanitize mark' do
    expect(render_string('& <p>hello</p>')).to eq("<p>hello</p>\n")
    expect(render_string('%span& <p>hello</p>')).to eq("<span><p>hello</p></span>\n")
  end

  it 'parses == syntax' do
    expect(render_string('&== =<p>hello</p>')).to eq("=<p>hello</p>\n")
    expect(render_string('%span&== =<p>hello</p>')).to eq("<span>=<p>hello</p></span>\n")
  end

  context 'with preserve' do
    it 'ignores preserve mark' do
      expect(render_string('&~ "<p>hello</p>"')).to eq("&lt;p&gt;hello&lt;/p&gt;\n")
      expect(render_string('%span&~ "<p>hello</p>"')).to eq("<span>&lt;p&gt;hello&lt;/p&gt;</span>\n")
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
faml-0.6.0 spec/render/sanitize_spec.rb
faml-0.5.1 spec/render/sanitize_spec.rb
faml-0.5.0 spec/render/sanitize_spec.rb
faml-0.4.2 spec/render/sanitize_spec.rb
faml-0.4.1 spec/render/sanitize_spec.rb
faml-0.4.0 spec/render/sanitize_spec.rb
faml-0.3.6 spec/render/sanitize_spec.rb
faml-0.3.5 spec/render/sanitize_spec.rb
faml-0.3.4 spec/render/sanitize_spec.rb
faml-0.3.3 spec/render/sanitize_spec.rb
faml-0.3.2 spec/render/sanitize_spec.rb
faml-0.3.1 spec/render/sanitize_spec.rb
faml-0.3.0 spec/render/sanitize_spec.rb