Extends
lithium\test\UnitSource
public function testConstructWithPath() {
$request = new Request(array(
'host' => 'localhost/base/path',
'port' => 443,
'headers' => array('Header' => 'Value'),
'body' => array('Part 1'),
'params' => array('param' => 'value')
));
$expected = '/base/path';
$result = $request->path;
$this->assertEqual($expected, $result);
}