gitlabhq/spec/support/stubbed_repository.rb

60 lines
898 B
Ruby
Raw Normal View History

2013-01-04 20:45:30 +01:00
require "repository"
require "project"
2013-02-04 17:18:36 +01:00
require "shell"
2013-01-04 20:45:30 +01:00
# 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 destroy
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
2013-02-04 17:18:36 +01:00
module Gitlab
class Shell
def add_repository name
true
end
def remove_repository name
true
end
def add_key id, key
2013-02-04 17:18:36 +01:00
true
end
def remove_key id, key
2013-02-04 17:18:36 +01:00
true
end
end
end