add Gollum::File

This commit is contained in:
Tom Preston-Werner
2010-04-11 12:53:03 -06:00
parent 769bf89587
commit 9307900b09
5 changed files with 39 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
require File.join(File.dirname(__FILE__), *%w[helper])
context "File" do
setup do
@wiki = Gollum::Wiki.new(testpath("examples/lotr.git"))
end
test "new file" do
file = Gollum::File.new(@wiki)
end
end