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

Update::needUpdatePage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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