Browse Source

added request format test.

Taylor Otwell 13 years ago
parent
commit
560b1362a1
1 changed files with 6 additions and 0 deletions
  1. 6 0
      tests/Cases/RequestTest.php

+ 6 - 0
tests/Cases/RequestTest.php

@@ -31,6 +31,12 @@ class RequestTest extends PHPUnit_Framework_TestCase {
 		$this->assertEquals('PUT', Laravel\Request::method());
 	}
 
+	public function test_format_method_returns_extension()
+	{
+		$this->assertEquals('html', Laravel\Request::format('user'));
+		$this->assertEquals('json', Laravel\Request::format('user.json'));
+	}
+
 	public function test_server_method_returns_from_the_server_array()
 	{
 		$_SERVER = array('TEST' => 'something', 'USER' => array('NAME' => 'taylor'));