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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Copyright (C) 2012 Kouhei Sutou <kou@cozmixng.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
require "rabbit/source-generator/hiki"
class TestSourceGeneratorHiki < Test::Unit::TestCase
def setup
@generator = Rabbit::SourceGenerator::Hiki.new
end
def test_heading1
assert_equal("! Hello",
@generator.heading(1, "Hello"))
end
def test_heading2
assert_equal("!! Hello",
@generator.heading(2, "Hello"))
end
def test_heading3
assert_equal("!!! Hello",
@generator.heading(3, "Hello"))
end
def test_definition_list_item
item = @generator.definition_list_item("Rabbit",
"The presentation tool for Rubyist")
assert_equal(":Rabbit:The presentation tool for Rubyist",
item)
end
def test_unordered_list_item
assert_equal("* Hello",
@generator.unordered_list_item("Hello"))
end
def test_image
image = @generator.image("lavie.png", :relative_height => 90)
assert_equal(<<-EOR.rstrip, image)
{{image("lavie.png",
{
"relative_height" => 90,
})}}
EOR
end
def test_preformatted_line
assert_equal(" Hello", @generator.preformatted_line("Hello"))
end
def test_comment
assert_equal("// Hello", @generator.comment("Hello"))
end
end
|