You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
206 B

8 months ago
  1. <?php
  2. use yii\helpers\Url;
  3. class AboutCest
  4. {
  5. public function ensureThatAboutWorks(AcceptanceTester $I)
  6. {
  7. $I->amOnPage(Url::toRoute('/site/about'));
  8. $I->see('About', 'h1');
  9. }
  10. }