Browse Source

fix request tests.

Taylor Otwell 13 years ago
parent
commit
ba29a0bd38
1 changed files with 5 additions and 11 deletions
  1. 5 11
      tests/Cases/RequestTest.php

+ 5 - 11
tests/Cases/RequestTest.php

@@ -90,19 +90,13 @@ class RequestTest extends PHPUnit_Framework_TestCase {
 		$this->assertEquals('0.0.0.0', Laravel\Request::ip());
 	}
 
-	public function test_protocol_returns_http_when_not_https()
+	public function test_protocol_returns_server_protocol()
 	{
-		$this->assertEquals('http', Laravel\Request::protocol());
+		$_SERVER['SERVER_PROTOCOL'] = 'taylor';
+		$this->assertEquals('taylor', Laravel\Request::protocol());
 
-		$_SERVER['HTTPS'] = 'off';
-
-		$this->assertEquals('http', Laravel\Request::protocol());
-	}
-
-	public function test_protocol_returns_https_when_https()
-	{
-		$_SERVER['HTTPS'] = 'on';
-		$this->assertEquals('https', Laravel\Request::protocol());
+		unset($_SERVER['SERVER_PROTOCOL']);
+		$this->assertEquals('HTTP/1.1', Laravel\Request::protocol());
 	}
 
 	public function test_ajax_method_returns_false_when_not_ajax()