mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 15:33:21 +05:30
31 lines
711 B
PHP
31 lines
711 B
PHP
<?php
|
|
namespace tests\codeception\api\functional\accounts;
|
|
|
|
use tests\codeception\api\_pages\AccountsRoute;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class ChangeLangCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function testSubmitNewEmail(FunctionalTester $I) {
|
|
$I->wantTo('change my account language');
|
|
$id = $I->amAuthenticated();
|
|
|
|
$this->route->changeLanguage($id, 'ru');
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
|
|
}
|