hensei-api/spec/factories/crew_gw_participations.rb
Justin Edmund f2a058b6b2 add GW events and scoring system
- create gw_events, crew_gw_participations, gw_crew_scores, gw_individual_scores
- add models, blueprints, controllers for GW tracking
- add model specs and gw_events controller specs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 23:34:54 -08:00

8 lines
147 B
Ruby

FactoryBot.define do
factory :crew_gw_participation do
crew
gw_event
preliminary_ranking { nil }
final_ranking { nil }
end
end