13 lines
327 B
Ruby
13 lines
327 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :terraform_state, class: 'Terraform::State' do
|
|
project { create(:project) }
|
|
|
|
sequence(:name) { |n| "state-#{n}" }
|
|
|
|
trait :with_file do
|
|
file { fixture_file_upload('spec/fixtures/terraform/terraform.tfstate', 'application/json') }
|
|
end
|
|
end
|
|
end
|