-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix validation bug on missions update #338 #339
base: development
Are you sure you want to change the base?
Changes from 2 commits
be9cabe
2eb0f76
c3b84d4
203eb08
a268b6f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -25,6 +25,18 @@ | |||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
describe 'validations' do | ||||||||||||||||||||||||||||||||||||||||||||||||
context 'when a new enrollment is created where mission is full' do | ||||||||||||||||||||||||||||||||||||||||||||||||
it 'raises an error' do | ||||||||||||||||||||||||||||||||||||||||||||||||
mission = create :mission, max_member_count: 4 | ||||||||||||||||||||||||||||||||||||||||||||||||
enroll_n_members_on_mission(mission, 4) | ||||||||||||||||||||||||||||||||||||||||||||||||
extra_enrollment = Enrollment.new(mission: mission) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
expect(extra_enrollment).to_not be_valid | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of creating a method helper that is used only once in that file (meaning, it only moves the logic elsewhere), I think this setup can be done directly under this context. You could either create a new
Suggested change
Also, it's better to be specific if we can on what error is raised. Here, it's an invalidation |
||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
describe '#duration' do | ||||||||||||||||||||||||||||||||||||||||||||||||
subject(:create_enrollment) do | ||||||||||||||||||||||||||||||||||||||||||||||||
create :enrollment, start_time: mission.start_date, end_time: mission.start_date + 2.hours, mission: mission | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -58,4 +70,15 @@ | |||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def enroll_n_members_on_mission(mission, members_count) | ||||||||||||||||||||||||||||||||||||||||||||||||
members = create_list :member, members_count | ||||||||||||||||||||||||||||||||||||||||||||||||
members.each do |member| | ||||||||||||||||||||||||||||||||||||||||||||||||
create :enrollment, | ||||||||||||||||||||||||||||||||||||||||||||||||
member: member, | ||||||||||||||||||||||||||||||||||||||||||||||||
mission: mission, | ||||||||||||||||||||||||||||||||||||||||||||||||
start_time: mission.start_date, | ||||||||||||||||||||||||||||||||||||||||||||||||
end_time: mission.start_date + 3.hours | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[...] is created
on a full mission
might be better ?