gitlab-org--gitlab-foss/spec/factories/ci/variables.rb

26 lines
619 B
Ruby
Raw Normal View History

# == Schema Information
#
# Table name: ci_variables
#
# id :integer not null, primary key
# project_id :integer not null
# key :string(255)
# value :text
# encrypted_value :text
# encrypted_value_salt :string(255)
# encrypted_value_iv :string(255)
# gl_project_id :integer
#
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :ci_variable, class: Ci::Variable do
2015-12-31 21:30:07 +00:00
id 10
key 'TEST_VARIABLE_1'
value 'VALUE_1'
project factory: :empty_project
end
end