-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterviews.rb
More file actions
22 lines (22 loc) · 897 Bytes
/
interviews.rb
File metadata and controls
22 lines (22 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FactoryBot.define do
factory :interview do
job_title "MyString"
referred? { [true, false].sample }
received_offer? false
notes "MyText"
difficulty_rating { (1..3).to_a.sample }
experience_rating { (1..3).to_a.sample }
accepted_offer? { [true, false].sample }
phone_screen? { [true, false].sample }
phone_screen_details { Faker::Hacker.say_something_smart }
tech_screen? { [true, false].sample }
tech_screen_details { Faker::Hacker.say_something_smart }
take_home_challenge? { [true, false].sample }
take_home_challenge_details { Faker::Hacker.say_something_smart }
onsite? { [true, false].sample }
onsite_details { Faker::Hacker.say_something_smart }
whiteboarding? { [true, false].sample }
whiteboarding_details { Faker::Hacker.say_something_smart }
negotiation_details { Faker::Hacker.say_something_smart }
end
end