Newer
Older
dmpopidor / spec / factories / perms.rb
@Bodacious Bodacious on 19 Jul 2018 300 bytes Adding fixtures
# == Schema Information
#
# Table name: perms
#
#  id         :integer          not null, primary key
#  name       :string
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

FactoryBot.define do
  factory :perm do
    name { Faker::Company.catch_phrase }
  end
end