Sha256: 7dab18a30432c34ca16f169d134a7127f548193021ab64c347db9f249aedd12a
Contents?: true
Size: 422 Bytes
Versions: 1
Compression:
Stored size: 422 Bytes
Contents
require "spec_helper" require "pricecut" describe Pricecut::Elements::H6 do let(:visitor) { Pricecut::MarkdownVisitor.new } let(:root) do parse %<<h6>Heading</h6>> end subject { described_class.new(visitor, root) } describe "#output!" do it "appends a Markdown header with newline to the output" do subject.output! visitor.output.should eq("###### Heading ######\n") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pricecut-0.0.2 | spec/pricecut/elements/h6_spec.rb |