Sha256: c5c78aac052606c41aa27c73433cf08cbee2c46fc3f04da304cfc1824a0bff51
Contents?: true
Size: 400 Bytes
Versions: 63
Compression:
Stored size: 400 Bytes
Contents
require 'spec_helper' describe String do describe 'markdown_paragraphs' do it { expect("hello\nworld !\n\nbye bye".markdown_paragraphs).to eq ["hello\nworld !", 'bye bye'] } it { expect("hello\nworld !\n \nbye bye".markdown_paragraphs).to eq ["hello\nworld !", 'bye bye'] } it { expect("hello\nworld !\n \n\nbye bye".markdown_paragraphs).to eq ["hello\nworld !", 'bye bye'] } end end
Version data entries
63 entries across 63 versions & 1 rubygems