forked from rtomayko/tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged pull request rtomayko#79 from rkh/redcarpet.
add redcarpet support
- Loading branch information
Showing
4 changed files
with
93 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
require 'contest' | ||
require 'tilt' | ||
|
||
begin | ||
require 'redcarpet' | ||
|
||
class RedcarpetTemplateTest < Test::Unit::TestCase | ||
test "registered for '.md' files" do | ||
assert Tilt.mappings['md'].include?(Tilt::RedcarpetTemplate) | ||
end | ||
|
||
test "registered for '.mkd' files" do | ||
assert Tilt.mappings['mkd'].include?(Tilt::RedcarpetTemplate) | ||
end | ||
|
||
test "registered for '.markdown' files" do | ||
assert Tilt.mappings['markdown'].include?(Tilt::RedcarpetTemplate) | ||
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::RedcarpetTemplate) | ||
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::RedcarpetTemplate.new { |t| "# Hello World!" } | ||
assert_equal "<h1>Hello World!</h1>\n", template.render | ||
end | ||
|
||
test "can be rendered more than once" do | ||
template = Tilt::RedcarpetTemplate.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::RedcarpetTemplate.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::RedcarpetTemplate.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::RedcarpetTemplate (disabled)\n" | ||
end |