initial library setup

This commit is contained in:
Tom Preston-Werner
2010-04-07 00:41:50 -07:00
parent 9668b76617
commit c1abbec2f1
6 changed files with 251 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
require 'helper'
class RepoTest < Test::Unit::TestCase
def test_repo_creation
repo = Gollum::Repo.new("examples/lotr")
assert_equal "examples/lotr", repo.path
end
end