aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/events.rb
blob: aaaae0ad48b9cf739f34c2db96a2b74447d38443 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FactoryBot.define do
  factory :event do
    name { "MyString" }
    date { Faker::Date.backward(days: 10) }
    organisation_id { "1" }
  end

  # factory :organisation do
  #   name { "Smersh" }
  # end
end