Sha256: 9f5c72df05426be020224b5123030c1d23d27bb8a533da31f37a08b61caa4274
Contents?: true
Size: 1.05 KB
Versions: 9
Compression:
Stored size: 1.05 KB
Contents
# frozen-string-literal: true require 'spec_helper' RSpec.describe 'Multiline rendering', type: :render do it 'handles multiline syntax' do expect(render_string(<<HAML)).to eq("<p>\nfoo bar baz\nquux\n</p>\n") %p = "foo " + | "bar " + | "baz" | = "quux" HAML end it 'handles multiline with non-script line' do expect(render_string(<<HAML)).to eq("<p>\nfoo \nbar\n</p>\n") %p foo | bar HAML end it 'handles multiline at the end of template' do expect(render_string(<<HAML)).to eq("<p>\nfoo bar baz \n</p>\n") %p foo | bar | baz | HAML end it 'is not multiline' do expect(render_string(<<HAML)).to eq("<div>\nhello\n|\nworld\n</div>\n") %div hello | world HAML end it 'can be used in attribute list' do expect(render_string(<<HAML)).to eq("<div bar='2' foo='1'></div>\n") %div{foo: 1, | bar: 2} HAML end it "isn't enabled in filter" do expect(render_string(<<HAML)).to eq("<script>\n hello |\n world |\n</script>\n4\n") :javascript hello | world | = __LINE__ HAML end end
Version data entries
9 entries across 9 versions & 1 rubygems