Sha256: ba482727439692c55bae8f014217527aaa4a823d7a44bb68863851a219833dcc
Contents?: true
Size: 1.77 KB
Versions: 36
Compression:
Stored size: 1.77 KB
Contents
require 'contest' require 'tilt' begin require 'rdiscount' class RDiscountTemplateTest < Test::Unit::TestCase test "registered for '.md' files" do assert Tilt.mappings['md'].include?(Tilt::RDiscountTemplate) end test "registered for '.mkd' files" do assert Tilt.mappings['mkd'].include?(Tilt::RDiscountTemplate) end test "registered for '.markdown' files" do assert Tilt.mappings['markdown'].include?(Tilt::RDiscountTemplate) end test "registered above BlueCloth" do %w[md mkd markdown].each do |ext| mappings = Tilt.mappings[ext] blue_idx = mappings.index(Tilt::BlueClothTemplate) rdis_idx = mappings.index(Tilt::RDiscountTemplate) assert rdis_idx < blue_idx, "#{rdis_idx} should be lower than #{blue_idx}" end end test "preparing and evaluating templates on #render" do template = Tilt::RDiscountTemplate.new { |t| "# Hello World!" } assert_equal "<h1>Hello World!</h1>\n", template.render end test "can be rendered more than once" do template = Tilt::RDiscountTemplate.new { |t| "# Hello World!" } 3.times { assert_equal "<h1>Hello World!</h1>\n", template.render } end test "smartypants when :smart is set" do template = Tilt::RDiscountTemplate.new(:smart => true) { |t| "OKAY -- 'Smarty Pants'" } assert_equal "<p>OKAY — ‘Smarty Pants’</p>\n", template.render end test "stripping HTML when :filter_html is set" do template = Tilt::RDiscountTemplate.new(:filter_html => true) { |t| "HELLO <blink>WORLD</blink>" } assert_equal "<p>HELLO <blink>WORLD</blink></p>\n", template.render end end rescue LoadError => boom warn "Tilt::RDiscountTemplate (disabled)" end
Version data entries
36 entries across 29 versions & 10 rubygems