Welcome to mirror list, hosted at ThFree Co, Russian Federation.

monkeypatch.rb « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4c358c21a3cce6858f5ac6c8b0efadc1116fa56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Stubbing Project <-> git host path
# create project using Factory only
class Project
  def update_repository
    true
  end

  def update_repository
    true
  end

  def path_to_repo
    File.join(Rails.root, "tmp", "tests", path)
  end

  def satellite
    @satellite ||= FakeSatellite.new
  end
end

class Key
  def update_repository
    true
  end

  def repository_delete_key
    true
  end
end

class UsersProject
  def update_repository
    true
  end
end

class FakeSatellite
  def exists? 
    true
  end

  def create
    true
  end
end