Sha256: 4ad575c4842d81e0e11b425986fc52631e717a653d2169cc9daaff98dd55f82d
Contents?: true
Size: 406 Bytes
Versions: 9
Compression:
Stored size: 406 Bytes
Contents
# frozen-string-literal: true require 'spec_helper' RSpec.describe 'Markdown filter rendering', type: :render do it 'renders Markdown filter' do expect(render_string(<<HAML)).to eq("<h1>hello</h1>\nworld\n") :markdown # hello world HAML end it 'parses string interpolation' do expect(render_string(<<'HAML')).to eq("<h1>hello</h1>\nworld\n") :markdown # #{'hello'} world HAML end end
Version data entries
9 entries across 9 versions & 1 rubygems