Remove include or require declaration from all helpers test
diff --git a/tests/codeigniter/helpers/email_helper_test.php b/tests/codeigniter/helpers/email_helper_test.php
index 7324e81..a01f3d5 100644
--- a/tests/codeigniter/helpers/email_helper_test.php
+++ b/tests/codeigniter/helpers/email_helper_test.php
@@ -1,10 +1,12 @@
<?php
-require_once(BASEPATH.'helpers/email_helper.php');
+class Email_helper_test extends CI_TestCase {
-class Email_helper_test extends CI_TestCase
-{
-
+ public function set_up()
+ {
+ $this->helper('email');
+ }
+
public function test_valid_email()
{
$this->assertEquals(FALSE, valid_email('test'));