mirror of
https://github.com/elyby/accounts.git
synced 2024-12-03 04:01:03 +05:30
a91ce6ce82
Добавлен класс фикстур для таблицы истории ников
14 lines
311 B
PHP
14 lines
311 B
PHP
<?php
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\UsernameHistory;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class UsernameHistoryFixture extends ActiveFixture {
|
|
|
|
public $modelClass = UsernameHistory::class;
|
|
|
|
public $dataFile = '@tests/codeception/common/fixtures/data/usernames-history.php';
|
|
|
|
}
|