scinote-web/spec/factories/reports.rb
2019-03-19 15:33:57 +01:00

12 lines
192 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :report do
user
project
team
name { Faker::Name.unique.name }
description { Faker::Lorem.sentence }
end
end