Sha256: 77abafe70a01bc1f53bc9e24fca441ee2e127c29dbe854a8a230de22d1e91bf8
Contents?: true
Size: 1.43 KB
Versions: 132
Compression:
Stored size: 1.43 KB
Contents
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 "<h1>Hello World!</h1>", template.render end test "can be rendered more than once" do template = Tilt::BlueClothTemplate.new { |t| "# Hello World!" } 3.times { assert_equal "<h1>Hello World!</h1>", template.render } end test "smartypants when :smart is set" do template = Tilt::BlueClothTemplate.new(:smartypants => true) { |t| "OKAY -- 'Smarty Pants'" } assert_equal "<p>OKAY — ‘Smarty Pants’</p>", template.render end test "stripping HTML when :filter_html is set" do template = Tilt::BlueClothTemplate.new(:escape_html => true) { |t| "HELLO <blink>WORLD</blink>" } assert_equal "<p>HELLO <blink>WORLD</blink></p>", template.render end end rescue LoadError => boom warn "Tilt::BlueClothTemplate (disabled)\n" end
Version data entries
132 entries across 115 versions & 18 rubygems