[8.x] Add unprocessable test response assertion #38553
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.
Proposes a new
->assertUnprocessable()
method onTestResponse
to compliment the existing descriptive convenience methods.I use
->assertOk()
,->assertUnauthorized()
,->assertForbidden()
& friends in tests because they read really clearly and benefit from showing up in my editor's tab autocomplete so there's a small quality of life enhancement.Working on a complex project with a lot of validation I've been wishing there was an equivalent for
->assertStatus(422)
or the more human but long winded->assertStatus(Response::HTTP_UNPROCESSABLE_ENTITY)
.The addition is syntactic sugar and does not modify any existing methods so there are no breaking changes.