30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-01 22:10:50 +00:00

[imp] MenuCest with new createMenuItem

This commit is contained in:
Yves Hoppe 2015-09-28 17:16:49 +02:00
parent ccb40cb2f0
commit e31a75b409

View File

@ -29,9 +29,10 @@ class MenuCest
$I->wantToTest('Frontend menu creation in /administrator/');
$I->doAdministratorLogin();
$title = 'automated testing ' . uniqid();
$I->createMenuItem($title, 'Weblinks', 'List All Web Link Categories');
$I->expectTo('see a success message after saving the menu item');
$I->checkForPhpNoticesOrWarnings();
}
/**
@ -47,8 +48,9 @@ class MenuCest
$I->wantToTest('Frontend category menu creation in /administrator/');
$I->doAdministratorLogin();
$title = 'automated testing ' . uniqid();
$I->createMenuItem($title, 'Weblinks', 'List Web Links in a Category');
$I->expectTo('see a success message after saving the menu item');
$I->checkForPhpNoticesOrWarnings();
}
}