mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
31 lines
756 B
PHP
31 lines
756 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Api\Assets;
|
|
|
|
use App\Models\Asset;
|
|
use App\Models\User;
|
|
use Tests\Support\InteractsWithSettings;
|
|
use Tests\TestCase;
|
|
|
|
class AssetCheckinTest extends TestCase
|
|
{
|
|
use InteractsWithSettings;
|
|
|
|
public function testLastCheckInFieldIsSetOnCheckin()
|
|
{
|
|
$admin = User::factory()->superuser()->create();
|
|
$asset = Asset::factory()->create(['last_checkin' => null]);
|
|
|
|
$asset->checkOut(User::factory()->create(), $admin, now());
|
|
|
|
$this->actingAsForApi($admin)
|
|
->postJson(route('api.asset.checkin', $asset))
|
|
->assertOk();
|
|
|
|
$this->assertNotNull(
|
|
$asset->fresh()->last_checkin,
|
|
'last_checkin field should be set on checkin'
|
|
);
|
|
}
|
|
}
|