3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-13 11:18:20 +00:00
Files
snipe-it/tests/Unit/MaintenanceTest.php
2026-03-16 17:40:57 -07:00

48 lines
1.2 KiB
PHP

<?php
namespace Tests\Unit;
use App\Models\Maintenance;
use Tests\TestCase;
class MaintenanceTest extends TestCase
{
public function test_zeros_out_warranty_if_blank()
{
$c = new Maintenance;
$c->is_warranty = '';
$this->assertTrue($c->is_warranty === 0);
$c->is_warranty = '4';
$this->assertTrue($c->is_warranty == 4);
}
public function test_sets_costs_appropriately()
{
$c = new Maintenance;
$c->cost = '0.00';
$this->assertTrue($c->cost === null);
$c->cost = '9.54';
$this->assertTrue($c->cost === 9.54);
$c->cost = '9.50';
$this->assertTrue($c->cost === 9.5);
}
public function test_nulls_out_notes_if_blank()
{
$c = new Maintenance;
$c->notes = '';
$this->assertTrue($c->notes === null);
$c->notes = 'This is a long note';
$this->assertTrue($c->notes === 'This is a long note');
}
public function test_nulls_out_completion_date_if_blank_or_invalid()
{
$c = new Maintenance;
$c->completion_date = '';
$this->assertTrue($c->completion_date === null);
$c->completion_date = '0000-00-00';
$this->assertTrue($c->completion_date === null);
}
}