Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function ensureIAmGetWrongEmailToConfirmError(AcceptanceTester $I) |
||
10 | { |
||
11 | $I->wantTo('check wrong email to confirm is get error.'); |
||
12 | $I->amOnPage('/registration/confirm?' . http_build_query([ |
||
13 | 'email' => '[email protected]', 'client' => 'test_client', 'id' => 1234567, 'salt' => 'test_salt', |
||
14 | 'hash' => 'test_hash', 'what' => 'contactConfirmEmail', |
||
15 | ])); |
||
16 | $I->see('wrong email to confirm'); |
||
17 | } |
||
18 | |||
31 |