7 lines
137 B
PHP
7 lines
137 B
PHP
<?php
|
|
$I = new AcceptanceTester($scenario);
|
|
$I->wantTo('ensure that frontpage works');
|
|
$I->amOnPage('/');
|
|
$I->see('Account Sign in');
|
|
?>
|