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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-02-17 06:55:24 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-03-04 23:26:51 +0300
commit6df45eb4630d3eef4f232398de405b169c3c6876 (patch)
tree1f059ced536939bc14ea5d86fba8afce04537d40 /spec/factories/system_hooks.rb
parent5de46014d74c1805b6bb090f5b2abebd6fb1f399 (diff)
Move all factory definitions to their own file
Diffstat (limited to 'spec/factories/system_hooks.rb')
-rw-r--r--spec/factories/system_hooks.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/factories/system_hooks.rb b/spec/factories/system_hooks.rb
new file mode 100644
index 00000000000..c786e9cb79b
--- /dev/null
+++ b/spec/factories/system_hooks.rb
@@ -0,0 +1,5 @@
+FactoryGirl.define do
+ factory :system_hook do
+ url { FFaker::Internet.uri('http') }
+ end
+end