demarches-normaliennes/spec/factories/champ.rb

32 lines
812 B
Ruby
Raw Normal View History

2018-01-23 17:15:42 +01:00
FactoryBot.define do
factory :champ do
2018-02-14 15:12:57 +01:00
type_de_champ { create(:type_de_champ) }
2017-07-11 16:50:29 +02:00
trait :checkbox do
2018-02-14 15:12:57 +01:00
type_de_champ { create(:type_de_champ_checkbox) }
2017-07-11 16:50:29 +02:00
end
trait :header_section do
2018-02-14 15:12:57 +01:00
type_de_champ { create(:type_de_champ_header_section) }
2017-07-11 16:50:29 +02:00
end
trait :explication do
2018-02-14 15:12:57 +01:00
type_de_champ { create(:type_de_champ_explication) }
end
trait :dossier_link do
2018-02-14 15:12:57 +01:00
type_de_champ { create(:type_de_champ_dossier_link) }
end
trait :piece_justificative do
type_de_champ { create(:type_de_champ_piece_justificative) }
end
trait :with_piece_justificative_file do
after(:create) do |champ, evaluator|
champ.piece_justificative_file.attach(io: StringIO.new("toto"), filename: "toto.txt", content_type: "text/plain")
end
end
end
end