コード例 #1
0
ファイル: RedirectTest.php プロジェクト: visor/nano
 public function testHomeRedirectShouldHasRootLocation()
 {
     $this->redirect->home();
     self::assertEquals('/', $this->getResponse()->getHeader('Location'));
     self::assertEquals(302, $this->getResponse()->getStatus());
 }