Completed
Push — master ( 9fec5b...0ee870 )
by Andrii
06:47 queued 10s
created

Update   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A needUpdatePage() 0 6 1
1
<?php
2
3
namespace hipanel\modules\server\tests\_support\Page\Hub;
4
5
class Update extends Hub
6
{
7
    public function needUpdatePage()
8
    {
9
        $this->tester->seeInCurrentUrl('view?id');
10
        $this->tester->click('div.box-menu a[href*="update"]');
11
        $this->waitPjax();
12
        $this->tester->seeInCurrentUrl('update?id=');
13
    }
14
}
15