summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/form_helper_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-12-01 14:33:42 +0100
committerAndrey Andreev <narf@devilix.net>2016-12-01 14:33:42 +0100
commit37c4cc599698da0634d620665491fc27e9a36beb (patch)
tree28268a118a0492ade95be64ea3ec7237ee738244 /tests/codeigniter/helpers/form_helper_test.php
parent172f949370bb1498789c7d897fdaa4073388ebd5 (diff)
Remove previously deprecated Form Helper function form_prep()
Diffstat (limited to 'tests/codeigniter/helpers/form_helper_test.php')
-rw-r--r--tests/codeigniter/helpers/form_helper_test.php16
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 &quot;quoted&quot; text.',
- form_prep('Here is a string containing "quoted" text.')
- );
-
- $this->assertEquals(
- 'Here is a string containing a &lt;tag&gt;.',
- form_prep('Here is a string containing a <tag>.', TRUE)
- );
- }
-
}