1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/factories/accounts.rb
2018-12-05 05:33:39 +05:00

9 lines
182 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :empty_account, class: Account
factory :account_with_user, parent: :empty_account do
association :user
end
end