forked from snipe/snipe-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} | ||
|
||
} |