scinote-web/spec/factories/repository_columns.rb
2019-12-09 13:48:36 +01:00

55 lines
1.1 KiB
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :repository_column do
sequence(:name) { |n| "My column-#{n}" }
created_by { create :user }
repository
data_type { :RepositoryTextValue }
trait :text_type do
data_type { :RepositoryTextValue }
end
trait :list_type do
data_type { :RepositoryListValue }
end
trait :asset_type do
data_type { :RepositoryAssetValue }
end
trait :status_type do
data_type { :RepositoryStatusValue }
end
trait :date_time_type do
data_type { :RepositoryDateTimeValue }
end
trait :date_type do
data_type { :RepositoryDateValue }
end
trait :time_type do
data_type { :RepositoryTimeValue }
end
trait :date_time_range_type do
data_type { :RepositoryDateTimeRangeValue }
end
trait :date_range_type do
data_type { :RepositoryDateRangeValue }
end
trait :time_range_type do
data_type { :RepositoryTimeRangeValue }
end
trait :checklist_type do
data_type { :RepositoryChecklistValue }
end
end
end