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