Skip to content

Commit

Permalink
Dept tests
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed May 23, 2017
1 parent 332076b commit ed46dee
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/acceptance/DepartmentsCept.php
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('&lt;span class=&quot;');
27 changes: 27 additions & 0 deletions tests/unit/DepartmentTest.php
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);
}

}

0 comments on commit ed46dee

Please sign in to comment.