added request tests.

This commit is contained in:
Taylor Otwell 2011-10-10 22:31:59 -05:00
parent c1e68717bc
commit f2b9d1e2f8
2 changed files with 12 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public static function uri()
{
$uri = $_SERVER['PATH_INFO'];
}
if (isset($_SERVER['REQUEST_URI']))
elseif (isset($_SERVER['REQUEST_URI']))
{
$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);

View File

@ -0,0 +1,11 @@
<?php
class RequestTest extends PHPUnit_Framework_TestCase {
public function test_uri_method_returns_path_info_if_set()
{
$_SERVER['PATH_INFO'] = 'something';
$this->assertEquals('something', Laravel\Request::uri());
}
}