all
This commit is contained in:
31
Productivite/Snipe-IT/tests/Unit/LocationTest.php
Normal file
31
Productivite/Snipe-IT/tests/Unit/LocationTest.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace Tests\Unit;
|
||||
|
||||
use App\Models\Location;
|
||||
use Tests\TestCase;
|
||||
|
||||
class LocationTest extends TestCase
|
||||
{
|
||||
public function testPassesIfNotSelfParent()
|
||||
{
|
||||
$a = Location::factory()->make([
|
||||
'name' => 'Test Location',
|
||||
'id' => 1,
|
||||
'parent_id' => Location::factory()->create(['id' => 10])->id,
|
||||
]);
|
||||
|
||||
$this->assertTrue($a->isValid());
|
||||
}
|
||||
|
||||
public function testFailsIfSelfParent()
|
||||
{
|
||||
$a = Location::factory()->make([
|
||||
'name' => 'Test Location',
|
||||
'id' => 1,
|
||||
'parent_id' => 1,
|
||||
]);
|
||||
|
||||
$this->assertFalse($a->isValid());
|
||||
$this->assertStringContainsString(trans('validation.non_circular', ['attribute' => 'parent id']), $a->getErrors());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user