'https://twitter.com/i/web/status/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 SyndicateNoteToTwitter($note); $job->handle($client); $this->assertDatabaseHas('notes', [ 'id' => 1, 'tweet_id' => '123', ]); } }