Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function testfindlink() |
||
20 | { |
||
21 | |||
22 | $page = $this->get("forgotten-password/"); // attempt to access the Lost Forgot Page |
||
23 | $this->assertEquals(200, $page->getStatusCode(), "a page should load"); |
||
24 | $this->assertEquals( |
||
25 | LostPasswordPage::find_link(false), |
||
26 | "/forgotten-password/", |
||
27 | "LostPasswordPage exists" |
||
28 | ); |
||
61 |