Sha256: 734d1486b411a302fdbd239a1de92fd488c0e45345d0a18b927c8f74fdca2d6c

Contents?: true

Size: 297 Bytes

Versions: 5

Compression:

Stored size: 297 Bytes

Contents

require "spec_helper"

describe Kitabu::Exporter::Epub do
  let(:root) { SPECDIR.join("support/mybook") }

  before do
    Kitabu::Exporter::HTML.export(root)
    Kitabu::Exporter::Epub.export(root)
  end

  it "generates e-pub" do
    expect(root.join("output/mybook.epub")).to be_file
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kitabu-2.1.0 spec/kitabu/exporter/epub_spec.rb
kitabu-2.0.4 spec/kitabu/exporter/epub_spec.rb
kitabu-2.0.3 spec/kitabu/exporter/epub_spec.rb
kitabu-2.0.2 spec/kitabu/exporter/epub_spec.rb
kitabu-2.0.1 spec/kitabu/exporter/epub_spec.rb