1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
require 'contest'
require 'tilt'
begin
require 'kramdown'
class MarukuTemplateTest < Test::Unit::TestCase
test "registered for '.md' files" do
assert Tilt.mappings['md'].include?(Tilt::KramdownTemplate)
end
test "registered for '.mkd' files" do
assert Tilt.mappings['mkd'].include?(Tilt::KramdownTemplate)
end
test "registered for '.markdown' files" do
assert Tilt.mappings['markdown'].include?(Tilt::KramdownTemplate)
end
test "registered above MarukuTemplate" do
%w[md mkd markdown].each do |ext|
mappings = Tilt.mappings[ext]
kram_idx = mappings.index(Tilt::KramdownTemplate)
maru_idx = mappings.index(Tilt::MarukuTemplate)
assert kram_idx < maru_idx,
"#{kram_idx} should be lower than #{maru_idx}"
end
end
test "preparing and evaluating templates on #render" do
template = Tilt::KramdownTemplate.new { |t| "# Hello World!" }
assert_equal "<h1 id='hello_world'>Hello World!</h1>", template.render
end
test "can be rendered more than once" do
template = Tilt::KramdownTemplate.new { |t| "# Hello World!" }
3.times { assert_equal "<h1 id='hello_world'>Hello World!</h1>", template.render }
end
end
rescue LoadError => boom
warn "Tilt::KramdownTemplate (disabled)"
end
|