# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::Epub3::Converter - Stem' do
it 'supports mathml stem blocks' do
book, = to_epub fixture_file('stem.adoc')
chapter = book.item_by_href 'stem.xhtml'
expect(chapter).not_to be_nil
expect(chapter.content).to include '
y = x 2 4 '
end
end