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.
Merge in dvyjones's bluecloth branch
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
require 'contest' | ||
require 'tilt' | ||
|
||
begin | ||
require 'bluecloth' | ||
|
||
class BlueClothTemplateTest < Test::Unit::TestCase | ||
setup do | ||
Tilt.register('markdown', Tilt::BlueClothTemplate) | ||
Tilt.register('md', Tilt::BlueClothTemplate) | ||
Tilt.register('mkd', Tilt::BlueClothTemplate) | ||
end | ||
|
||
teardown do | ||
# Need to revert to RDiscount, otherwise the RDiscount test will fail | ||
Tilt.register('markdown', Tilt::RDiscountTemplate) | ||
Tilt.register('md', Tilt::RDiscountTemplate) | ||
Tilt.register('mkd', Tilt::RDiscountTemplate) | ||
end | ||
|
||
test "registered for '.markdown' files unless RDiscount is loaded" do | ||
unless defined?(RDiscount) | ||
assert_equal Tilt::BlueClothTemplate, Tilt['test.markdown'] | ||
end | ||
end | ||
|
||
test "registered for '.md' files unless RDiscount is loaded" do | ||
unless defined?(RDiscount) | ||
assert_equal Tilt::BlueClothTemplate, Tilt['test.md'] | ||
end | ||
end | ||
|
||
test "registered for '.mkd' files unless RDiscount is loaded" do | ||
unless defined?(RDiscount) | ||
assert_equal Tilt::BlueClothTemplate, Tilt['test.mkd'] | ||
end | ||
end | ||
|
||
test "preparing and evaluating templates on #render" do | ||
template = Tilt::BlueClothTemplate.new { |t| "# Hello World!" } | ||
assert_equal "<h1>Hello World!</h1>", template.render | ||
end | ||
|
||
test "smartypants when :smart is set" do | ||
template = Tilt::BlueClothTemplate.new(:smartypants => true) { |t| | ||
"OKAY -- 'Smarty Pants'" } | ||
assert_equal "<p>OKAY — ‘Smarty Pants’</p>", | ||
template.render | ||
end | ||
|
||
test "stripping HTML when :filter_html is set" do | ||
template = Tilt::BlueClothTemplate.new(:escape_html => true) { |t| | ||
"HELLO <blink>WORLD</blink>" } | ||
assert_equal "<p>HELLO <blink>WORLD</blink></p>", template.render | ||
end | ||
end | ||
rescue LoadError => boom | ||
warn "Tilt::BlueClothTemplate (disabled)\n" | ||
end |