mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2025-02-10 21:58:46 +03:00
Factory generator activated
This commit is contained in:
parent
a52c059050
commit
8af58ea50a
@ -1,69 +1,68 @@
|
|||||||
<?php
|
<?php
|
||||||
// $I = new AcceptanceTester($scenario);
|
$I = new AcceptanceTester($scenario);
|
||||||
|
|
||||||
// $I->wantTo('generate model factories without fields');
|
$I->wantTo('generate model factories without fields');
|
||||||
// $I->runShellCommand('php artisan wn:factory "App\Task"');
|
$I->runShellCommand('php artisan wn:factory "App\Task"');
|
||||||
// $I->seeInShellOutput('App\Task factory generated');
|
$I->seeInShellOutput('App\Task factory generated');
|
||||||
// $I->openFile('./database/factories/ModelFactory.php');
|
$I->openFile('./database/factories/ModelFactory.php');
|
||||||
// $I->seeInThisFile('
|
$I->seeInThisFile('
|
||||||
// $factory->define(App\Task::class, function ($faker) {
|
$factory->define(App\Task::class, function ($faker) {
|
||||||
// return [
|
return [
|
||||||
// // Fields here
|
// Fields here
|
||||||
// ];
|
];
|
||||||
// });');
|
});');
|
||||||
// $I->writeToFile('./database/factories/ModelFactory.php', "<?php
|
$I->writeToFile('./database/factories/ModelFactory.php', "<?php
|
||||||
|
|
||||||
// /*
|
/*
|
||||||
// |--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
// | Model Factories
|
| Model Factories
|
||||||
// |--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
// |
|
|
|
||||||
// | Here you may define all of your model factories. Model factories give
|
| Here you may define all of your model factories. Model factories give
|
||||||
// | you a convenient way to create models for testing and seeding your
|
| you a convenient way to create models for testing and seeding your
|
||||||
// | database. Just tell the factory how a default model should look.
|
| database. Just tell the factory how a default model should look.
|
||||||
// |
|
|
|
||||||
// */
|
*/
|
||||||
|
|
||||||
// \$factory->define(App\User::class, function (\$faker) {
|
\$factory->define(App\User::class, function (\$faker) {
|
||||||
// return [
|
return [
|
||||||
// 'name' => \$faker->name,
|
'name' => \$faker->name,
|
||||||
// 'email' => \$faker->email,
|
'email' => \$faker->email,
|
||||||
// 'password' => str_random(10),
|
'password' => str_random(10),
|
||||||
// 'remember_token' => str_random(10),
|
'remember_token' => str_random(10),
|
||||||
// ];
|
];
|
||||||
// });
|
});
|
||||||
// ");
|
");
|
||||||
|
|
||||||
// $I->wantTo('generate model factories with fields');
|
$I->wantTo('generate model factories with fields');
|
||||||
// $I->runShellCommand('php artisan wn:factory "App\Task" --fields="title:sentence(3),description:paragraph(3),due:date,hidden:boolean"');
|
$I->runShellCommand('php artisan wn:factory "App\Task" --fields="title:sentence(3),description:paragraph(3),due:date,hidden:boolean"');
|
||||||
// $I->seeInShellOutput('App\Task factory generated');
|
$I->seeInShellOutput('App\Task factory generated');
|
||||||
// $I->openFile('./database/factories/ModelFactory.php');
|
$I->openFile('./database/factories/ModelFactory.php');
|
||||||
// $I->seeInThisFile("
|
$I->seeInThisFile("
|
||||||
// 'title' => \$faker->sentence(3),
|
'title' => \$faker->sentence(3),
|
||||||
// 'description' => \$faker->paragraph(3),
|
'description' => \$faker->paragraph(3),
|
||||||
// 'due' => \$faker->date,
|
'due' => \$faker->date,
|
||||||
// 'hidden' => \$faker->boolean,
|
'hidden' => \$faker->boolean,
|
||||||
// ");
|
");
|
||||||
// $I->writeToFile('./database/factories/ModelFactory.php', "<?php
|
$I->writeToFile('./database/factories/ModelFactory.php', "<?php
|
||||||
|
|
||||||
// /*
|
/*
|
||||||
// |--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
// | Model Factories
|
| Model Factories
|
||||||
// |--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
// |
|
|
|
||||||
// | Here you may define all of your model factories. Model factories give
|
| Here you may define all of your model factories. Model factories give
|
||||||
// | you a convenient way to create models for testing and seeding your
|
| you a convenient way to create models for testing and seeding your
|
||||||
// | database. Just tell the factory how a default model should look.
|
| database. Just tell the factory how a default model should look.
|
||||||
// |
|
|
|
||||||
// */
|
*/
|
||||||
|
|
||||||
// \$factory->define(App\User::class, function (\$faker) {
|
|
||||||
// return [
|
|
||||||
// 'name' => \$faker->name,
|
|
||||||
// 'email' => \$faker->email,
|
|
||||||
// 'password' => str_random(10),
|
|
||||||
// 'remember_token' => str_random(10),
|
|
||||||
// ];
|
|
||||||
// });
|
|
||||||
// ");
|
|
||||||
|
|
||||||
|
\$factory->define(App\User::class, function (\$faker) {
|
||||||
|
return [
|
||||||
|
'name' => \$faker->name,
|
||||||
|
'email' => \$faker->email,
|
||||||
|
'password' => str_random(10),
|
||||||
|
'remember_token' => str_random(10),
|
||||||
|
];
|
||||||
|
});
|
||||||
|
");
|
||||||
|
@ -15,7 +15,7 @@ class CommandsServiceProvider extends ServiceProvider
|
|||||||
$this->registerResourceCommand();
|
$this->registerResourceCommand();
|
||||||
$this->registerResourcesCommand();
|
$this->registerResourcesCommand();
|
||||||
$this->registerPivotTableCommand();
|
$this->registerPivotTableCommand();
|
||||||
// $this->registerFactoryCommand();
|
$this->registerFactoryCommand();
|
||||||
// $this->registerSeedCommand();
|
// $this->registerSeedCommand();
|
||||||
// $this->registerTestCommand();
|
// $this->registerTestCommand();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user