# frozen_string_literal: true require_relative '../test_helper' require 'mdv/document' describe MDV::Document do let(:document) { MDV::Document.new('test/fixtures/test.md') } describe '#html' do it 'renders the correct html' do document.html. must_equal "
This is a test document.
\n" end end end