2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-01 02:19:50 +09:00
|
|
|
Fabricator(:account_note) do
|
2023-06-11 01:29:01 +09:00
|
|
|
account { Fabricate.build(:account) }
|
|
|
|
target_account { Fabricate.build(:account) }
|
2023-02-19 07:38:14 +09:00
|
|
|
comment 'User note text'
|
2020-07-01 02:19:50 +09:00
|
|
|
end
|