mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
25 lines
891 B
PHP
25 lines
891 B
PHP
<?php
|
|
|
|
$I = new AcceptanceTester($scenario);
|
|
AcceptanceTester::test_login($I);
|
|
$I->am('logged in user');
|
|
$I->wantTo('ensure the status labels listing page loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage('/statuslabels');
|
|
$I->waitForElement('.table', 5); // secs
|
|
$I->seeNumberOfElements('tr', [1, 30]);
|
|
$I->seeInTitle('Status Labels');
|
|
$I->see('Status Labels');
|
|
$I->seeInPageSource('statuslabels/create');
|
|
$I->dontSee('Status Labels', '.page-header');
|
|
$I->see('Status Labels', 'h1.pull-left');
|
|
|
|
/* Create Form */
|
|
$I->wantTo('ensure the create status labels form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->click(['link' => 'Create New']);
|
|
$I->amOnPage('/statuslabels/create');
|
|
$I->dontSee('Create Status Label', '.page-header');
|
|
$I->see('Create Status Label', 'h1.pull-left');
|
|
$I->dontSee('<span class="');
|