Sha256: 8d5e91103d53bd5dc3b46f5e058c0ac54a54ba9e59c29ea6889dbb08d349481f
Contents?: true
Size: 862 Bytes
Versions: 3
Compression:
Stored size: 862 Bytes
Contents
FactoryBot.define do factory :questionnaire do first_name { "John" } last_name { "Doe" } phone { "(123) 456-7890" } international { false } date_of_birth { Date.today - 20.years } experience { "first" } interest { "design" } school_id { create(:school).id } shirt_size { "Unisex - M" } dietary_restrictions { "" } special_needs { "" } agreement_accepted { true } code_of_conduct_accepted { true } data_sharing_accepted { true } can_share_info { true } gender { "Male" } major { "Computer Science" } level_of_study { "University (Undergraduate)" } why_attend { "This sounds cool" } association :user end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hackathon_manager-0.8.2 | test/factories/questionnaire.rb |
hackathon_manager-0.8.1 | test/factories/questionnaire.rb |
hackathon_manager-0.8.0 | test/factories/questionnaire.rb |