gitlabhq/spec/support/stubbed_repository.rb

35 lines
618 B
Ruby
Raw Normal View History

2013-01-04 20:45:30 +01:00
require "repository"
require "project"
# Stubs out all Git repository access done by models so that specs can run
# against fake repositories without Grit complaining that they don't exist.
2013-01-02 23:01:08 +01:00
class Project
2013-01-04 20:45:30 +01:00
def repository
if path == "empty" || !path
nil
else
GitLabTestRepo.new(path_with_namespace)
end
end
def satellite
FakeSatellite.new
end
class FakeSatellite
def exists?
true
end
def create
true
end
end
end
2013-01-04 20:45:30 +01:00
class GitLabTestRepo < Repository
def repo
@repo ||= Grit::Repo.new(Rails.root.join('tmp', 'repositories', 'gitlabhq'))
end
end