Sha256: d7c8ad536098bafc50e1444d4272a79555bba848c657c4076760d3afe5dc01fa
Contents?: true
Size: 830 Bytes
Versions: 76
Compression:
Stored size: 830 Bytes
Contents
require 'test_helper' require 'tilt' begin require 'tilt/rdoc' class RDocTemplateTest < Minitest::Test test "is registered for '.rdoc' files" do assert_equal Tilt::RDocTemplate, Tilt['test.rdoc'] end test "preparing and evaluating the template with #render" do template = Tilt::RDocTemplate.new { |t| "= Hello World!" } result = template.render.strip assert_match %r(<h1), result assert_match %r(>Hello World!<), result end test "can be rendered more than once" do template = Tilt::RDocTemplate.new { |t| "= Hello World!" } 3.times do result = template.render.strip assert_match %r(<h1), result assert_match %r(>Hello World!<), result end end end rescue LoadError => boom warn "Tilt::RDocTemplate (disabled) [#{boom}]" end
Version data entries
76 entries across 75 versions & 14 rubygems