summaryrefslogtreecommitdiff
path: root/spec/monkeypatch.rb
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-23 05:19:40 -0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-25 14:19:15 -0400
commitfba174e9bc4e4ef5c0c4d6a4282f37e5265b87e2 (patch)
treef53e56b4f694ffefac5d3b744f48deccceb1631e /spec/monkeypatch.rb
parent852b9c28dd80af4a49336b0ff921a1a863dbc929 (diff)
downloadgitlab-ce-fba174e9bc4e4ef5c0c4d6a4282f37e5265b87e2.tar.gz
Cleanup spec/support folder and spec/spec_helper
Changes: * Move spec/monkeypatch to spec/support * Remove unused support/shared_examples * Move support/api to support/api_helpers to match module name * Move support/login to support/login_helpers to match module name * Move API specs to requests/api (convention over configuration) * Remove unused support/js_patch * Simplify login_as helper * Move DatabaseCleaner stuff to its own support file * Remove unnecessary configuration and requires from spec_helper
Diffstat (limited to 'spec/monkeypatch.rb')
-rw-r--r--spec/monkeypatch.rb51
1 files changed, 0 insertions, 51 deletions
diff --git a/spec/monkeypatch.rb b/spec/monkeypatch.rb
deleted file mode 100644
index 855a31f06de..00000000000
--- a/spec/monkeypatch.rb
+++ /dev/null
@@ -1,51 +0,0 @@
-# Stubbing Project <-> git host path
-# create project using Factory only
-class Project
- def update_repository
- true
- end
-
- def destroy_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
-
-class ProtectedBranch
- def update_repository
- true
- end
-end