mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 05:48:11 +08:00
11 lines
272 B
PHP
11 lines
272 B
PHP
<?php
|
|
use tests\codeception\frontend\FunctionalTester;
|
|
use tests\codeception\frontend\_pages\AboutPage;
|
|
|
|
/* @var $scenario Codeception\Scenario */
|
|
|
|
$I = new FunctionalTester($scenario);
|
|
$I->wantTo('ensure that about works');
|
|
AboutPage::openBy($I);
|
|
$I->see('About', 'h1');
|