gitlab-org--gitlab-foss/spec/monkeypatch.rb

32 lines
405 B
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
# Stubbing Project <-> gitosis path
# create project using Factory only
class Project
2011-10-08 21:36:38 +00:00
def update_gitosis_project
true
end
def update_gitosis
true
end
def path_to_repo
2011-10-09 19:55:06 +00:00
File.join(Rails.root, "tmp", "tests", path)
2011-10-08 21:36:38 +00:00
end
end
class Key
2011-10-08 21:36:38 +00:00
def update_gitosis
true
end
def gitosis_delete_key
true
end
end
class UsersProject
def update_gitosis_project
true
end
end