Sha256: 01b3397d14d3dd36b951acc7ac407f7355b3cbbe4ce5d41998ff2bd198489c24
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true 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<p>unescape</p>world\n") expect(render_string(<<HAML)).to eq("<span>\nhello<p>unescape</p>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("<p>hello</p>\n") expect(render_string('%span&~ "<p>hello</p>"')).to eq("<span><p>hello</p></span>\n") end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
faml-0.8.1 | spec/render/sanitize_spec.rb |
faml-0.8.0 | spec/render/sanitize_spec.rb |