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