Sha256: 93a6575a0e91255ad1f9a46b18dcf7329adea442520acf20c9970f56c2b985ec
Contents?: true
Size: 822 Bytes
Versions: 33
Compression:
Stored size: 822 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 /<h1/, result assert_match />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 /<h1/, result assert_match />Hello World!</, result end end end rescue LoadError => boom warn "Tilt::RDocTemplate (disabled) [#{boom}]" end
Version data entries
33 entries across 33 versions & 10 rubygems