Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function ensureIndexPageWorks(Client $I) |
||
24 | { |
||
25 | $I->login(); |
||
26 | $I->needPage(Url::to('@bill/index')); |
||
27 | $I->see('Bills', 'h1'); |
||
28 | $I->seeLink('Recharge account', Url::to('@pay/deposit')); |
||
29 | $this->ensureICanSeeAdvancedSearchBox(); |
||
30 | $this->ensureICanSeeBulkBillSearchBox(); |
||
31 | } |
||
32 | |||
55 |