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

48 lines
552 B
Ruby
Raw Normal View History

2011-12-05 02:43:53 -05:00
# Stubbing Project <-> git host path
2011-10-08 17:36:38 -04:00
# create project using Factory only
class Project
2011-12-05 02:43:53 -05:00
def update_repository
2011-10-08 17:36:38 -04:00
true
end
2012-05-27 06:39:57 -04:00
def destroy_repository
2011-10-08 17:36:38 -04:00
true
end
def path_to_repo
2011-10-09 15:55:06 -04:00
File.join(Rails.root, "tmp", "tests", path)
2011-10-08 17:36:38 -04:00
end
2012-04-23 08:32:56 -04:00
def satellite
@satellite ||= FakeSatellite.new
end
2011-10-08 17:36:38 -04:00
end
class Key
2011-12-05 02:43:53 -05:00
def update_repository
2011-10-08 17:36:38 -04:00
true
end
2011-12-05 02:43:53 -05:00
def repository_delete_key
2011-10-08 17:36:38 -04:00
true
end
end
class UsersProject
2011-12-05 02:43:53 -05:00
def update_repository
2011-10-08 17:36:38 -04:00
true
end
end
2012-04-23 08:32:56 -04:00
class FakeSatellite
def exists?
true
end
def create
true
end
end