Sha256: 7a3f671a5fcff3dcc8dd34a35f935c497e710d969cff1c1b665e0987f675a325
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
require './lib/everything/piece' describe Everything::Piece do let(:given_full_path) do 'some/fake/path/here' end let(:piece) do described_class.new(given_full_path) end let(:expected_markdown_file_path) do "#{given_full_path}/index.md" end let(:fake_markdown_text) do <<MD # Piece Title Here The content is totally this right here. And it might even include multiple lines! MD end before do expect(File) .to receive(:read) .with(expected_markdown_file_path) .and_return(fake_markdown_text) end describe '#raw_markdown' do let(:expected_raw_markdown) do fake_markdown_text end it "is all the file's markdown" do expect(piece.raw_markdown).to eq(expected_raw_markdown) end end describe '#title' do let(:expected_title) do 'Piece Title Here' end it 'is text of the markdown title' do expect(piece.title).to eq(expected_title) end end describe '#content' do let(:expected_content) do <<TEXT The content is totally this right here. And it might even include multiple lines! TEXT end it 'is only the markdown after the title' do expect(piece.content).to eq(expected_content) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
everything-core-0.0.3 | spec/everything/piece_spec.rb |