app.kluk.fr/spec/factories/moods.rb

8 lines
152 B
Ruby
Raw Normal View History

2026-02-08 11:15:51 +01:00
FactoryBot.define do
factory :mood do
2026-03-20 18:13:12 +01:00
recorded_at { DateTime.parse("2026-01-15 10:00:00") }
2026-02-08 11:15:51 +01:00
association :user
2026-03-20 18:13:12 +01:00
association :mode
2026-02-08 11:15:51 +01:00
end
end