docbrown/spec/factories/polls.rb
rhymes ac7ef66726 Update Faker to 2.1.0 (#3652)
* Upgrade Faker to 2.1.0

* Transition Faker calls to the new API
2019-08-07 15:59:23 -04:00

6 lines
196 B
Ruby

FactoryBot.define do
factory :poll do
prompt_markdown { Faker::Hipster.words(number: 5) }
poll_options_input_array { [rand(5).to_s, rand(5).to_s, rand(5).to_s, rand(5).to_s] }
end
end