diff --git a/application/controllers/Home.php b/application/controllers/Home.php index c4b60c9c..f61a8b2b 100644 --- a/application/controllers/Home.php +++ b/application/controllers/Home.php @@ -90,11 +90,6 @@ function resetPassword($resetToken = '') { $this->load->view('footer'); } - function signupEmail() { - $this->_bodyData['resetToken'] = 'a4f9g53F47gF'; - $this->load->view('email/reset-password', $this->_bodyData); - } - function about() { $this->_headerData['headerClass'] = 'blue'; $this->_headerData['title'] = 'About Toolwatch'; diff --git a/application/tests/controllers/Home_test.php b/application/tests/controllers/Home_test.php index 4daa7381..f4e48004 100644 --- a/application/tests/controllers/Home_test.php +++ b/application/tests/controllers/Home_test.php @@ -27,13 +27,6 @@ public function test_contact() { $this->assertContains('
', $output); } - public function test_signupEmail() { - - $output = $this->request('GET', ['Home', 'signupEmail']); - - $this->assertContains('

Reset your password

', $output);