start work on formatted_page

This commit is contained in:
Tom Preston-Werner
2010-04-08 16:20:05 -07:00
parent c8d9b351e2
commit 3ff115048d
7 changed files with 110 additions and 13 deletions
+15
View File
@@ -0,0 +1,15 @@
require 'helper'
context "Wiki" do
setup do
@repo = Gollum::Wiki.new(testpath("examples/lotr.git"))
end
test "repo path" do
assert_equal testpath("examples/lotr.git"), @repo.path
end
test "git repo" do
assert_equal Grit::Repo, @repo.repo.class
end
end