prepareDatabase([ 'users' => [ $this->normalUser(), ], ]); } /** * @test */ public function disallows_index_for_guest() { $response = $this->send( $this->request('GET', '/api/notifications') ); $this->assertEquals(401, $response->getStatusCode()); } /** * @test */ public function shows_index_for_user() { $response = $this->send( $this->request('GET', '/api/notifications', [ 'authenticatedAs' => 2, ]) ); $this->assertEquals(200, $response->getStatusCode()); } }