コード例 #1
0
ファイル: JsonDeleteCept.php プロジェクト: pklink/hahns
<?php

/* @var \Codeception\Scenario $scenario */
$I = new TestGuy($scenario);
$I->wantTo('perform some DELETE requests');
$I->sendDELETE('/delete', ['id' => 400]);
$I->seeResponseIsJson();
$I->seeResponseContainsJson(['message' => 'home', 'id' => 400]);
$I->sendDELETE('/hello/peter', ['say' => 'nice to meet you!']);
$I->seeResponseIsJson();
$I->seeResponseContainsJson(['message' => 'nice to meet you!']);
$I->sendDELETE('/cars/id-412/now');
$I->seeResponseIsJson();
$I->seeResponseContainsJson(['message' => 'removed card with id `412`']);
コード例 #2
0
ファイル: AnyCept.php プロジェクト: pklink/hahns
<?php

/* @var \Codeception\Scenario $scenario */
$I = new TestGuy($scenario);
$I->wantTo('check events');
$I->sendDELETE('/any');
$I->seeResponseEquals('any');
$I->sendGET('/any');
$I->seeResponseEquals('any');
$I->sendPATCH('/any');
$I->seeResponseEquals('any');
$I->sendPOST('/any');
$I->seeResponseEquals('any');
$I->sendPUT('/any');
$I->seeResponseEquals('any');