Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function ensureIGetErrorsWhenRequiredParamsIsNotPassed(AcceptanceTester $I) |
||
20 | { |
||
21 | $I->wantTo('check when url without required params has an validation error.'); |
||
22 | $I->amOnPage('/registration/confirm'); |
||
23 | $I->see('Id cannot be blank'); |
||
24 | $I->see('Client cannot be blank'); |
||
25 | $I->see('Email cannot be blank'); |
||
26 | $I->see('What cannot be blank'); |
||
27 | $I->see('Salt cannot be blank'); |
||
28 | $I->see('Hash cannot be blank'); |
||
29 | } |
||
30 | } |
||
31 |