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