1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-02-04 04:37:51 +01:00
mastodon/spec/fabricators/severed_relationship_fabricator.rb

8 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