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
26 lines
907 B
PHP
26 lines
907 B
PHP
<?php
|
|
|
|
$I = new AcceptanceTester($scenario);
|
|
AcceptanceTester::test_login($I);
|
|
|
|
$I->am('logged in user');
|
|
$I->wantTo('ensure that the accessories listing page loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage('/accessories');
|
|
$I->waitForElement('.table', 5); // secs
|
|
$I->seeNumberOfElements('table[name="accessories"] tr', [5, 30]);
|
|
$I->seeInTitle('Accessories');
|
|
$I->see('Accessories');
|
|
$I->seeInPageSource('accessories/create');
|
|
$I->dontSee('Accessories', '.page-header');
|
|
$I->see('Accessories', 'h1.pull-left');
|
|
|
|
/* Create Form */
|
|
$I->wantTo('ensure that the create accessories form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->click(['link' => 'Create New']);
|
|
$I->amOnPage('/accessories/create');
|
|
$I->dontSee('Create Accessory', '.page-header');
|
|
$I->see('Create Accessory', 'h1.pull-left');
|
|
$I->dontSee('<span class="');
|