Passed
Pull Request — master (#5)
by
unknown
14:27
created

AboutCest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A ensureThatAboutWorks() 0 4 1
1
<?php
2
3
use yii\helpers\Url;
4
5
class AboutCest
6
{
7
    public function ensureThatAboutWorks(AcceptanceTester $I)
8
    {
9
        $I->amOnPage(Url::toRoute('/site/about'));
10
        $I->see('About', 'h1');
11
    }
12
}
13