Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
36 | public function testClientModifiedOptions() |
||
37 | { |
||
38 | $client = GuzzleClient::createClient($this->io, ['allow_redirects' => true, 'handler' => new MockHandler()]); |
||
39 | $this->assertSame(true, $client->getConfig()['allow_redirects']); |
||
40 | $this->assertInstanceOf(MockHandler::class, $client->getConfig()['handler']); |
||
41 | } |
||
42 | } |
||
43 |