summaryrefslogtreecommitdiff
path: root/spec/factories/customer_relations/organizations.rb
blob: b6efd46f1a4a23312d59429a61e2e12be13118f9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :organization, class: 'CustomerRelations::Organization' do
    group

    name { generate(:name) }
  end
end