1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-01 20:59:38 +00:00
mastodon/spec/fabricators/list_account_fabricator.rb
2023-03-04 18:31:13 +01:00

8 lines
162 B
Ruby

# frozen_string_literal: true
Fabricator(:list_account) do
list
account
before_create { |list_account, _| list_account.list.account.follow!(account) }
end