mirror of
https://github.com/e107inc/e107.git
synced 2025-10-11 13:04:28 +02:00
Acceptance test checks the output of e107's /install.php on first load Also added documentation on acceptance tests to README.md
22 lines
369 B
PHP
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");
|
|
}
|
|
}
|