'https://facebook.com/123' ]); $mock = new MockHandler([ new Response(201, ['Content-Type' => 'application/json'], $json), ]); $handler = HandlerStack::create($mock); $client = new Client(['handler' => $handler]); $note = Note::find(1); $job = new SyndicateNoteToFacebook($note); $job->handle($client); $this->assertDatabaseHas('notes', [ 'id' => 1, 'facebook_url' => 'https://facebook.com/123', ]); } }