mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-09 08:47:11 -05:00
13 lines
241 B
Ruby
13 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :family_membership, class: 'Family::Membership' do
|
|
association :family
|
|
association :user
|
|
role { :member }
|
|
|
|
trait :owner do
|
|
role { :owner }
|
|
end
|
|
end
|
|
end
|