コード例 #1
0
ファイル: HttpTest.php プロジェクト: djom20/Apricot
 public function testCorrectMethodIsDetected()
 {
     Apricot::reset();
     Apricot::setEnvironment('test');
     Apricot::when('/', function () {
         echo Apricot::method();
     });
     $this->assertTrue('GET' === Apricot::browse('/'));
     $this->assertTrue('POST' === Apricot::browse('/', 'POST'));
 }