mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Dept tests
This commit is contained in:
parent
332076bbe5
commit
ed46dee646
24
tests/acceptance/DepartmentsCept.php
Normal file
24
tests/acceptance/DepartmentsCept.php
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
$I = new AcceptanceTester($scenario);
|
||||||
|
AcceptanceTester::test_login($I);
|
||||||
|
|
||||||
|
$I->am('logged in user');
|
||||||
|
$I->wantTo('ensure that the department listing page loads without errors');
|
||||||
|
$I->lookForwardTo('seeing it load without errors');
|
||||||
|
$I->amOnPage('/departments');
|
||||||
|
$I->waitForElement('.table', 5); // secs
|
||||||
|
$I->seeNumberOfElements('table[name="departments"] tr', [5,30]);
|
||||||
|
$I->seeInTitle('Departments');
|
||||||
|
$I->see('Departments');
|
||||||
|
$I->seeInPageSource('departments/create');
|
||||||
|
$I->dontSee('Departments', '.page-header');
|
||||||
|
$I->see('Departments', 'h1.pull-left');
|
||||||
|
|
||||||
|
/* Create Form */
|
||||||
|
$I->wantTo('ensure that the create department form loads without errors');
|
||||||
|
$I->lookForwardTo('seeing it load without errors');
|
||||||
|
$I->click(['link' => 'Create New']);
|
||||||
|
$I->amOnPage('/department/create');
|
||||||
|
$I->dontSee('Create Department', '.page-header');
|
||||||
|
$I->see('Create Department', 'h1.pull-left');
|
||||||
|
$I->dontSee('<span class="');
|
27
tests/unit/DepartmentTest.php
Normal file
27
tests/unit/DepartmentTest.php
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<?php
|
||||||
|
use App\Models\Location;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
|
||||||
|
class DepartmentTest extends \Codeception\TestCase\Test
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var \UnitTester
|
||||||
|
*/
|
||||||
|
protected $tester;
|
||||||
|
use DatabaseMigrations;
|
||||||
|
|
||||||
|
public function testDepartmentAdd()
|
||||||
|
{
|
||||||
|
$department = factory(Department::class, 'department')->make();
|
||||||
|
$values = [
|
||||||
|
'name' => $department->name,
|
||||||
|
];
|
||||||
|
|
||||||
|
Department::create($values);
|
||||||
|
$this->tester->seeRecord('departments', $values);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue