docbrown/spec/factories/events.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

9 lines
248 B
Ruby

FactoryBot.define do
factory :event do
title { Faker::Company.bs }
description_markdown { Faker::Hipster.paragraph(sentence_count: 2) }
starts_at { Time.current }
ends_at { 3660.seconds.from_now }
category { "AMA" }
end
end