Пример #1
0
 public function testRawGuzzle()
 {
     $code = $this->module->executeInGuzzle(function (\GuzzleHttp\Client $client) {
         $res = $client->get('/info');
         return $res->getStatusCode();
     });
     $this->assertEquals(200, $code);
 }