scinote-web/spec/factories/teams.rb

11 lines
243 B
Ruby
Raw Normal View History

2019-01-10 01:30:33 +08:00
# frozen_string_literal: true
FactoryBot.define do
2017-07-10 20:38:18 +08:00
factory :team do
2019-01-10 01:30:33 +08:00
association :created_by, factory: :user
2017-07-10 20:38:18 +08:00
name 'My team'
description 'Lorem ipsum dolor sit amet, consectetuer adipiscing eli.'
space_taken 1048576
end
end