Created
September 26, 2018 15:30
-
-
Save mikolajpe/da06ac8054b5290ae79329631ccba018 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ApiCest | |
{ | |
public function tryApi(ApiTester $I) | |
{ | |
$I->sendGET('/'); | |
$I->seeResponseCodeIs(200); | |
$I->seeResponseIsJson(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment