first work on To Do Lists

This commit is contained in:
2020-04-19 22:46:28 +02:00
parent c71f3ca4d8
commit c6b94aa1f1
17 changed files with 710 additions and 2 deletions

View File

@@ -122,7 +122,7 @@ class MemosTest extends TestCase
$response = $this->patch('/api/memos/' . $memo->id, array_merge($this->data(), ['api_token' => $anotherUser->api_token]));
$response->assertStatus(Response::HTTP_FORBIDDEN);
$response->assertStatus(403);
}
/** @test */
@@ -138,7 +138,7 @@ class MemosTest extends TestCase
$this->assertCount(0, Memo::all());
$response->assertStatus(Response::HTTP_NO_CONTENT);
$response->assertStatus(204);
}
/** @test */