profile.rb 205 B

12345678
  1. FactoryBot.define do
  2. factory :'report/profile', aliases: %i[report_profile] do
  3. sequence(:name) { |n| "Report #{n}" }
  4. active { true }
  5. created_by_id { 1 }
  6. updated_by_id { 1 }
  7. end
  8. end