mirror of https://github.com/tootsuite/mastodon
9 lines
271 B
Ruby
9 lines
271 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:severed_relationship) do
|
||
|
local_account { Fabricate.build(:account) }
|
||
|
remote_account { Fabricate.build(:account) }
|
||
|
relationship_severance_event { Fabricate.build(:relationship_severance_event) }
|
||
|
direction { :active }
|
||
|
end
|