Dept tests

This commit is contained in:
snipe 2017-05-23 03:03:30 -07:00
parent 332076bbe5
commit ed46dee646
2 changed files with 51 additions and 0 deletions

View 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('&lt;span class=&quot;');

View 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);
}
}