diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:18:46 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:18:46 +0100 |
commit | 5e47aa3d87b44627bd79850536bfacd8d39a92a6 (patch) | |
tree | da4c5f9470566add053b96b08e782c55c1f55659 /tests/codeigniter/helpers | |
parent | 0c84ef9a33d18d758e36447fd18a240a458ae2bc (diff) |
Remove previously deprecated HTML helper functions br(), nbs()
Diffstat (limited to 'tests/codeigniter/helpers')
-rw-r--r-- | tests/codeigniter/helpers/html_helper_test.php | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/tests/codeigniter/helpers/html_helper_test.php b/tests/codeigniter/helpers/html_helper_test.php index 029f3f4cd..5565e011b 100644 --- a/tests/codeigniter/helpers/html_helper_test.php +++ b/tests/codeigniter/helpers/html_helper_test.php @@ -9,13 +9,6 @@ class Html_helper_test extends CI_TestCase { // ------------------------------------------------------------------------ - public function test_br() - { - $this->assertEquals('<br /><br />', br(2)); - } - - // ------------------------------------------------------------------------ - public function test_heading() { $this->assertEquals('<h1>foobar</h1>', heading('foobar')); @@ -72,13 +65,6 @@ EOH; // ------------------------------------------------------------------------ - public function test_NBS() - { - $this->assertEquals(' ', nbs(3)); - } - - // ------------------------------------------------------------------------ - public function test_meta() { $this->assertEquals( @@ -101,4 +87,4 @@ EOH; meta(array('name' => 'foo', 'type' => 'charset')) ); } -}
\ No newline at end of file +} |