예제 #1
0
파일: RedirectTest.php 프로젝트: visor/nano
 public function testHomeRedirectShouldHasRootLocation()
 {
     $this->redirect->home();
     self::assertEquals('/', $this->getResponse()->getHeader('Location'));
     self::assertEquals(302, $this->getResponse()->getStatus());
 }