Exemplo n.º 1
0
 public function testCreatedWithRedirect()
 {
     $url = 'http:://foo.bar';
     $response = new ApiResponse();
     $response->created($url);
     $this->assertEquals(201, $response->getStatusCode());
     $this->assertEquals($url, $response->headers->get('location'));
 }