diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:33:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:33:42 +0100 |
commit | 37c4cc599698da0634d620665491fc27e9a36beb (patch) | |
tree | 28268a118a0492ade95be64ea3ec7237ee738244 /tests/codeigniter/helpers | |
parent | 172f949370bb1498789c7d897fdaa4073388ebd5 (diff) |
Remove previously deprecated Form Helper function form_prep()
Diffstat (limited to 'tests/codeigniter/helpers')
-rw-r--r-- | tests/codeigniter/helpers/form_helper_test.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/codeigniter/helpers/form_helper_test.php b/tests/codeigniter/helpers/form_helper_test.php index b5fe99b96..4ecfaa5f7 100644 --- a/tests/codeigniter/helpers/form_helper_test.php +++ b/tests/codeigniter/helpers/form_helper_test.php @@ -271,20 +271,4 @@ EOH; $this->assertEquals($expected, form_close('</div></div>')); } - - // ------------------------------------------------------------------------ - - public function test_form_prep() - { - $this->assertEquals( - 'Here is a string containing "quoted" text.', - form_prep('Here is a string containing "quoted" text.') - ); - - $this->assertEquals( - 'Here is a string containing a <tag>.', - form_prep('Here is a string containing a <tag>.', TRUE) - ); - } - } |