snipe-it/tests/acceptance/CustomfieldsCept.php
Daniel Meltzer ae2cb5fe68 Make delete routes work. (#3077)
* Make delete routes work.  We put a little form in the modal that spoofs the delete field.

* Fix route on creating a user.

* Fix redundant id parameter.

* Port acceptance tests to new urls.
2016-12-19 10:42:33 -08:00

14 lines
487 B
PHP

<?php
$I = new AcceptanceTester($scenario);
AcceptanceTester::test_login($I);
$I->am('logged in user');
$I->wantTo('ensure that the custom fields page loads without errors');
$I->lookForwardTo('seeing it load without errors');
$I->amOnPage('/fields');
$I->seeInTitle('Custom Fields');
$I->see('Custom Fields');
$I->seeInPageSource('/fields/create');
$I->dontSee('Custom Fields', '.page-header');
$I->dontSee('Fieldsets', '.page-header');
$I->see('Manage Custom Fields', 'h1.pull-left');