Sha256: 88dfd11f5c34637dbc9c9f46e686cfd71c3d82da6fa61841b534279a368fb0ec
Contents?: true
Size: 1.06 KB
Versions: 9
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
9 entries across 9 versions & 1 rubygems