Sha256: f3d64277023a51ce7f6bcebb99ba1b264500cbf0d012d90ab4fcb7b2359e07dd
Contents?: true
Size: 1.05 KB
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
faml-0.8.1 | spec/render/multiline_spec.rb |
faml-0.8.0 | spec/render/multiline_spec.rb |