mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 15:32:12 +05:30
30 lines
654 B
PHP
30 lines
654 B
PHP
<?php
|
|
namespace codeception\api\functional;
|
|
|
|
use tests\codeception\api\_pages\OptionsRoute;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class OptionsCest {
|
|
|
|
/**
|
|
* @var OptionsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new OptionsRoute($I);
|
|
}
|
|
|
|
public function testRecaptchaPublicKey(FunctionalTester $I) {
|
|
$I->wantTo('Get recaptcha public key');
|
|
|
|
$this->route->get();
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'reCaptchaPublicKey' => 'public-key',
|
|
]);
|
|
}
|
|
|
|
}
|