debian-mirror-gitlab/spec/factories/ci/secure_files.rb
2022-08-27 11:52:29 +05:30

16 lines
468 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :ci_secure_file, class: 'Ci::SecureFile' do
sequence(:name) { |n| "file#{n}" }
file { fixture_file_upload('spec/fixtures/ci_secure_files/upload-keystore.jks', 'application/octet-stream') }
checksum { 'foo1234' }
project
trait :remote_store do
after(:create) do |ci_secure_file|
ci_secure_file.update!(file_store: ObjectStorage::Store::REMOTE)
end
end
end
end