mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-18 01:07:37 +08:00
9 lines
229 B
PHP
9 lines
229 B
PHP
<?php
|
|
use tests\codeception\frontend\FunctionalTester;
|
|
use tests\codeception\frontend\_pages\AboutPage;
|
|
|
|
$I = new FunctionalTester($scenario);
|
|
$I->wantTo('ensure that about works');
|
|
AboutPage::openBy($I);
|
|
$I->see('About', 'h1');
|