Sha256: 2ffe7f27d6abb129ae6a73c35e7cb071bdb3c35e632be7e99e2a2b609840c074

Contents?: true

Size: 414 Bytes

Versions: 1

Compression:

Stored size: 414 Bytes

Contents

require "spec_helper"
require "pricecut"

describe Pricecut::Elements::H3 do
  let(:visitor) { Pricecut::MarkdownVisitor.new }

  let(:root) do
    parse %<<h3>Heading</h3>>
  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.3 spec/pricecut/elements/h3_spec.rb