scinote-web/spec/factories/teams.rb
2019-02-13 14:31:26 +01:00

12 lines
266 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :team do
association :created_by, factory: :user
sequence(:name) { |n| "My team-#{n}" }
description { Faker::Lorem.sentence }
space_taken { 1048576 }
without_intro_demo true
end
end