This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
Fabricator(:status_edit) do
|
|
|
|
status nil
|
|
|
|
account nil
|
2023-02-18 23:38:14 +01:00
|
|
|
text 'MyText'
|
|
|
|
spoiler_text 'MyText'
|
2022-01-19 22:37:27 +01:00
|
|
|
media_attachments_changed false
|
2023-02-17 22:56:20 +01:00
|
|
|
end
|