2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-05 12:43:28 +01:00
|
|
|
Fabricator(:scheduled_status) do
|
2023-06-10 12:29:01 -04:00
|
|
|
account { Fabricate.build(:account) }
|
2019-01-05 12:43:28 +01:00
|
|
|
scheduled_at { 20.hours.from_now }
|
2023-11-20 04:36:49 -05:00
|
|
|
params { {} }
|
2019-01-05 12:43:28 +01:00
|
|
|
end
|