Upgraded testing to Laravel 8 - disabled most tests pending code optimisation
This commit is contained in:
35
database/factories/GroupFactory.php
Normal file
35
database/factories/GroupFactory.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\Group;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class GroupFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = Group::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'id' => 1,
|
||||
// 'site_id' // Needs to be passed in
|
||||
// 'date_start',
|
||||
// 'date_expire',
|
||||
// 'parent_id',
|
||||
'active' => TRUE,
|
||||
// 'pricing',
|
||||
// 'name',
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user