Newer
Older
2018-fumichan-thesis / form-sample / vendor / bundle / ruby / 2.5.0 / gems / tilt-2.0.8 / test / tilt_wikiclothtemplate_test.rb
require 'test_helper'
require 'tilt'

begin
  require 'tilt/wikicloth'

  class WikiClothTemplateTest < Minitest::Test
    test "is registered for '.mediawiki' files" do
      assert_equal Tilt::WikiClothTemplate, Tilt['test.mediawiki']
    end

    test "is registered for '.mw' files" do
      assert_equal Tilt::WikiClothTemplate, Tilt['test.mw']
    end

    test "is registered for '.wiki' files" do
      assert_equal Tilt::WikiClothTemplate, Tilt['test.wiki']
    end

    test "compiles and evaluates the template on #render" do
      template = Tilt::WikiClothTemplate.new { |t| "= Hello World! =" }
      assert_match(/<h1>.*Hello World!.*<\/h1>/m, template.render)
    end

    test "can be rendered more than once" do
      template = Tilt::WikiClothTemplate.new { |t| "= Hello World! =" }
      3.times { assert_match(/<h1>.*Hello World!.*<\/h1>/m, template.render) }
    end
  end
rescue LoadError
  warn "Tilt::WikiClothTemplate (disabled)"
end