Files
gollum/test/test_repo.rb
T
2010-04-07 13:36:48 -07:00

15 lines
258 B
Ruby

require 'helper'
context "Repo" do
setup do
@repo = Gollum::Repo.new("examples/lotr.git")
end
test "repo path" do
assert_equal "examples/lotr.git", @repo.path
end
test "git repo" do
assert_equal Grit::Repo, @repo.repo.class
end
end