diff options
author | Robert Speicher <rspeicher@gmail.com> | 2016-02-16 22:55:24 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-03-04 15:26:51 -0500 |
commit | 6df45eb4630d3eef4f232398de405b169c3c6876 (patch) | |
tree | 1f059ced536939bc14ea5d86fba8afce04537d40 /spec/factories/ci/variables.rb | |
parent | 5de46014d74c1805b6bb090f5b2abebd6fb1f399 (diff) | |
download | gitlab-ce-6df45eb4630d3eef4f232398de405b169c3c6876.tar.gz |
Move all factory definitions to their own file
Diffstat (limited to 'spec/factories/ci/variables.rb')
-rw-r--r-- | spec/factories/ci/variables.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/factories/ci/variables.rb b/spec/factories/ci/variables.rb index 8f62d64411b..856a8e725eb 100644 --- a/spec/factories/ci/variables.rb +++ b/spec/factories/ci/variables.rb @@ -12,8 +12,6 @@ # gl_project_id :integer # -# Read about factories at https://github.com/thoughtbot/factory_girl - FactoryGirl.define do factory :ci_variable, class: Ci::Variable do sequence(:key) { |n| "VARIABLE_#{n}" } |