diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-28 12:13:52 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-28 12:13:52 +0200 |
commit | c8ab5738c920f0daec0af184dbb2f744c3ca9611 (patch) | |
tree | ad74003a1a758f4c5638f06687f2ee60e534e941 /tests/codeigniter/helpers/text_helper_test.php | |
parent | a11b16b1af42bbb4ffbc15eeee50a3d3ceb402d5 (diff) | |
parent | bdb84af43792f507eaab5ab0c4b3ec1be17a1a54 (diff) |
Merge pull request #1226 from toopay/unit-tests
Improve Unit tests
Diffstat (limited to 'tests/codeigniter/helpers/text_helper_test.php')
-rw-r--r-- | tests/codeigniter/helpers/text_helper_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/codeigniter/helpers/text_helper_test.php b/tests/codeigniter/helpers/text_helper_test.php index a0866e638..584066b0c 100644 --- a/tests/codeigniter/helpers/text_helper_test.php +++ b/tests/codeigniter/helpers/text_helper_test.php @@ -1,13 +1,13 @@ <?php -require_once(BASEPATH.'helpers/text_helper.php'); +class Text_helper_test extends CI_TestCase { -class Text_helper_test extends CI_TestCase -{ private $_long_string; public function set_up() { + $this->helper('text'); + $this->_long_string = 'Once upon a time, a framework had no tests. It sad. So some nice people began to write tests. The more time that went on, the happier it became. Everyone was happy.'; } |