Add tests for the legacy tokens

This commit is contained in:
ErickSkrauch
2019-09-23 00:53:13 +03:00
parent cf62c686b1
commit a148da2ecf
17 changed files with 222 additions and 52 deletions

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace common\tests\fixtures;
use common\tests\_support\Redis\Fixture;
class LegacyOauthAccessTokenScopeFixture extends Fixture {
public $dataFile = '@root/common/tests/fixtures/data/legacy-oauth-access-tokens-scopes.php';
public $keysPrefix = 'oauth:access:tokens:';
public $keysPostfix = ':scopes';
}