Sha256: b5a6e6710d0c6825d1fd5afc64b5373cabae479c296a3dcc9f594f208addfde3

Contents?: true

Size: 894 Bytes

Versions: 4

Compression:

Stored size: 894 Bytes

Contents

require 'tempfile'
require 'rubygems'
require 'minitest/autorun'
require 'rdoc/markup/preprocess'

class TestRDocMarkupPreProcess < MiniTest::Unit::TestCase

  def setup
    @tempfile = Tempfile.new 'test_rdoc_markup_pre_process'
    @name = File.basename @tempfile.path
    @dir  = File.dirname @tempfile.path

    @pp = RDoc::Markup::PreProcess.new __FILE__, [@dir]
  end

  def teardown
    @tempfile.close
  end

  def test_include_file
    @tempfile.write <<-INCLUDE
# -*- mode: rdoc; coding: utf-8; fill-column: 74; -*-

Regular expressions (<i>regexp</i>s) are patterns which describe the
contents of a string.
    INCLUDE

    @tempfile.flush
    @tempfile.rewind

    content = @pp.include_file @name, ''

    expected = <<-EXPECTED
Regular expressions (<i>regexp</i>s) are patterns which describe the
contents of a string.
    EXPECTED

    assert_equal expected, content
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rdoc-2.5.6 test/test_rdoc_markup_pre_process.rb
rdoc-2.5.5 test/test_rdoc_markup_pre_process.rb
rdoc-2.5.4 test/test_rdoc_markup_pre_process.rb
rdoc-2.5.3 test/test_rdoc_markup_pre_process.rb