control-freak-ide/Control-Freak-Documentation/daux/tests/Format/Confluence/ApiTest.php
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

13 lines
367 B
PHP

<?php
namespace Todaymade\Daux\Format\Confluence;
class ApiTest extends \PHPUnit_Framework_TestCase
{
// this test supports upgrade Guzzle to version 6
public function testClientOptions()
{
$api = new Api('http://test.com/', 'user', 'pass');
$this->assertEquals('test.com', $api->getClient()->getConfig()['base_uri']->getHost());
}
}