Sha256: 0ba1eec6305ab51c18be6aab31fab0b8d8495b5b19bf2a51dd135355df18d5e8
Contents?: true
Size: 376 Bytes
Versions: 31
Compression:
Stored size: 376 Bytes
Contents
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
31 entries across 31 versions & 2 rubygems