Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jun 17, 2024
2 parents dc1b808 + 233e4af commit b1f2051
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions tests/Feature/AssetModels/Ui/AssetModelsTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

namespace Tests\Feature\AssetModels\Ui;

use App\Models\Category;
use App\Models\AssetModel;
use App\Models\Company;
use App\Models\CustomField;
use App\Models\Statuslabel;
use App\Models\Supplier;
use App\Models\User;
use Illuminate\Support\Facades\Crypt;
use Tests\TestCase;

class AssetModelsTest extends TestCase
{
public function testUserCanListAssetModels()
{

$this->actingAs(User::factory()->superuser()->create())
->get(route('models.index'))
->assertStatus(200);

}

public function testUserCanCreateAssetModels()
{
$this->actingAs(User::factory()->superuser()->create())
->post(route('models.index'), [
'name' => 'Test Model',
'category_id' => Category::factory()->create()->id
])
->assertStatus(302)
->assertRedirect(route('models.index'));
}


}

0 comments on commit b1f2051

Please sign in to comment.