require 'contest' require 'tilt' begin require 'bluecloth' class BlueClothTemplateTest < Test::Unit::TestCase test "registered for '.md' files" do assert Tilt.mappings['md'].include?(Tilt::BlueClothTemplate) end test "registered for '.mkd' files" do assert Tilt.mappings['mkd'].include?(Tilt::BlueClothTemplate) end test "registered for '.markdown' files" do assert Tilt.mappings['markdown'].include?(Tilt::BlueClothTemplate) end test "preparing and evaluating templates on #render" do template = Tilt::BlueClothTemplate.new { |t| "# Hello World!" } assert_equal "
OKAY — ‘Smarty Pants’
", template.render end test "stripping HTML when :filter_html is set" do template = Tilt::BlueClothTemplate.new(:escape_html => true) { |t| "HELLO " } assert_equal "HELLO <blink>WORLD</blink>
", template.render end end rescue LoadError => boom warn "Tilt::BlueClothTemplate (disabled)" end