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 /

.*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 /

.*Hello World!.*<\/h1>/m, template.render } end end rescue LoadError => boom warn "Tilt::WikiClothTemplate (disabled)" end