2018-03-25 12:15:39 -04:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 13:30:42 -04:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :event do
|
2019-01-16 14:33:21 -06:00
|
|
|
name { "The event of Wonders" }
|
|
|
|
start_datetime { DateTime.new(2025, 5, 11, 4,5,6) }
|
|
|
|
end_datetime { DateTime.new(2025, 5, 11, 5,1,7) }
|
|
|
|
address { "100 N Appleton St" }
|
|
|
|
city { "Appleton" }
|
|
|
|
state_code { "WI" }
|
|
|
|
slug { "event-of-wonders" }
|
2018-03-25 13:30:42 -04:00
|
|
|
nonprofit
|
|
|
|
profile
|
|
|
|
end
|
|
|
|
end
|