Issue
This Content is from Stack Overflow. Question asked by Razie Etemadian
public function test_show_role_should_return_actions()
{
$this->actingAs($this->user, 'api');
$this->withHeaders(['Accept' => 'application/json',])
->get(route('roles.show', ['role' => $this->role->id]))
->assertJsonStructure([
"data" => [
"name",
"actions" => [
"name",
"code"
]
]
]);
}
when I run the test,I have this error:
- TestsFeatureRoleRoleTest::test_show_role_should_return_actions
Failed asserting that an array has the key ‘name’.
Even when I remove the “name”,I get an error for the “actions” key.
Solution
public function test_show_role_should_return_actions()
{
$this->actingAs($this->user, 'api');
$this->getJson(route('roles.show', ['role' => $this->role->id]))
->assertJsonStructure([
'data' => [
'*' => [
'name',
'actions' => [
'*' => [
'name',
'code'
]
]
]
]
]);
}
This Question was asked in StackOverflow by Razie Etemadian and Answered by Razie Etemadian It is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.