Refactor Plan.deep_copy(plan)
#3469
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes proposed in this PR:
Remove redundant
plan.save!
(line 260) 4b25e4aplan_copy.identifier = plan_copy.id.to_s
, I believe this was meant to beplan_copy.save!
. However, rather than correcting the variable, I think the line can be removed completely .The earlier execution of
plan_copy.save!
(line 257) is necessary because we need to generate a pk forplan_copy
. However, theduplicate
action withinPlansController
appears to be the only thing callingPlan.deep_copy
, and the action is performing its own save on the copied plan returned fromdeep_copy
(see below):Refactor / use ActiveRecord association operator d8f8978
<<
here replaces manual foreign key assignment as well as the explicit save call.Add test for plan identifier copying 521ba8e