require 'contest' require 'tilt' begin require 'asciidoctor' class AsciidoctorTemplateTest < Test::Unit::TestCase HTML5_OUTPUT = "

Hello World!

" DOCBOOK_OUTPUT = "
Hello World!
" def strip_space(str) str.gsub(/>\s+<').strip end test "registered for '.ad' files" do assert Tilt.mappings['ad'].include?(Tilt::AsciidoctorTemplate) end test "registered for '.adoc' files" do assert Tilt.mappings['adoc'].include?(Tilt::AsciidoctorTemplate) end test "registered for '.asciidoc' files" do assert Tilt.mappings['asciidoc'].include?(Tilt::AsciidoctorTemplate) end test "preparing and evaluating html5 templates on #render" do template = Tilt::AsciidoctorTemplate.new(:attributes => {"backend" => 'html5'}) { |t| "== Hello World!" } assert_equal HTML5_OUTPUT, strip_space(template.render) end test "preparing and evaluating docbook templates on #render" do template = Tilt::AsciidoctorTemplate.new(:attributes => {"backend" => 'docbook'}) { |t| "== Hello World!" } assert_equal DOCBOOK_OUTPUT, strip_space(template.render) end test "can be rendered more than once" do template = Tilt::AsciidoctorTemplate.new(:attributes => {"backend" => 'html5'}) { |t| "== Hello World!" } 3.times { assert_equal HTML5_OUTPUT, strip_space(template.render) } end end rescue LoadError => boom warn "Tilt::AsciidoctorTemplate (disabled)" end