lithium\tests\cases\net\http\ServiceTest::testSendConfiguringConnection PHP Method

testSendConfiguringConnection() public method

    public function testSendConfiguringConnection()
    {
        $http = new Service($this->_testConfig);
        $result = $http->send('get', 'some-path/stuff', array(), array('someKey' => 'someValue'));
        $config = $http->connection->config();
        $this->assertEqual('someValue', $config['someKey']);
    }