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,14 @@
<?php
declare(strict_types=1);
namespace common\tests\fixtures;
use common\tests\_support\Redis\Fixture;
class LegacyOauthRefreshTokenFixture extends Fixture {
public $dataFile = '@root/common/tests/fixtures/data/legacy-oauth-refresh-tokens.php';
public $keysPrefix = 'oauth:refresh:tokens:';
}