mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
34 lines
772 B
PHP
34 lines
772 B
PHP
<?php
|
|
namespace tests\codeception\api\functional;
|
|
|
|
use Codeception\Specify;
|
|
use tests\codeception\api\_pages\AccountsRoute;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class AccountsCurrentCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function testCurrent(FunctionalTester $I) {
|
|
$I->loggedInAsActiveAccount();
|
|
|
|
$this->route->current();
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'id' => 1,
|
|
'username' => 'Admin',
|
|
'email' => 'admin@ely.by',
|
|
'shouldChangePassword' => false,
|
|
]);
|
|
}
|
|
|
|
}
|