50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
require File.join(File.dirname(__FILE__), *%w[helper])
|
|
|
|
context "Markup" do
|
|
setup do
|
|
@path = testpath("examples/test.git")
|
|
FileUtils.rm_rf(@path)
|
|
Grit::Repo.init_bare(@path)
|
|
@wiki = Gollum::Wiki.new(@path)
|
|
|
|
@commit = { :message => "Add stuff",
|
|
:name => "Tom Preston-Werner",
|
|
:email => "tom@github.com" }
|
|
end
|
|
|
|
teardown do
|
|
FileUtils.rm_r(File.join(File.dirname(__FILE__), *%w[examples test.git]))
|
|
end
|
|
|
|
test "page link" do
|
|
@wiki.write_page("Bilbo Baggins", :markdown, "a [[Bilbo Baggins]] b", @commit)
|
|
|
|
page = @wiki.page("Bilbo Baggins")
|
|
output = Gollum::Markup.new(page).render
|
|
assert_equal %{<p>a <a href="Bilbo-Baggins">Bilbo Baggins</a> b</p>\n}, output
|
|
end
|
|
|
|
test "image with absolute path" do
|
|
index = @wiki.repo.index
|
|
index.add("alpha.jpg", "hi")
|
|
index.commit("Add alpha.jpg")
|
|
@wiki.write_page("Bilbo Baggins", :markdown, "a [[/alpha.jpg]] b", @commit)
|
|
|
|
page = @wiki.page("Bilbo Baggins")
|
|
output = Gollum::Markup.new(page).render
|
|
assert_equal %{<p>a <img src="/alpha.jpg" /> b</p>\n}, output
|
|
end
|
|
|
|
test "image with relative path" do
|
|
index = @wiki.repo.index
|
|
index.add("greek/alpha.jpg", "hi")
|
|
index.add("greek/Bilbo-Baggins.md", "a [[alpha.jpg]] b")
|
|
index.commit("Add alpha.jpg")
|
|
|
|
page = @wiki.page("Bilbo Baggins")
|
|
output = Gollum::Markup.new(page).render
|
|
assert_equal %{<p>a <img src="/greek/alpha.jpg" /> b</p>\n}, output
|
|
end
|
|
|
|
end
|