1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-11 13:04:28 +02:00
Files
php-e107/tests/acceptance/InstallCest.php
Deltik a42025c5c6 First working acceptance test
Acceptance test checks the output of e107's /install.php on first load

Also added documentation on acceptance tests to README.md
2018-02-08 05:04:42 -06:00

22 lines
369 B
PHP

<?php
class InstallCest
{
public function _before(AcceptanceTester $I)
{
}
public function _after(AcceptanceTester $I)
{
}
// tests
public function installWelcomePageContainsExpectedContent(AcceptanceTester $I)
{
$I->amOnPage('/install.php');
$I->see("e107 Installation :: Step 1");
$I->see("Language Selection");
}
}