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