| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function ensureIGetErrorsWhenRequiredParamsIsNotPassed(AcceptanceTester $I) |
||
| 10 | { |
||
| 11 | $I->wantTo('check when url without required params has an validation error.'); |
||
| 12 | $I->amOnPage('/registration/confirm'); |
||
| 13 | $I->see('Id cannot be blank'); |
||
| 14 | $I->see('Client cannot be blank'); |
||
| 15 | $I->see('Email cannot be blank'); |
||
| 16 | $I->see('What cannot be blank'); |
||
| 17 | $I->see('Salt cannot be blank'); |
||
| 18 | $I->see('Hash cannot be blank'); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |