summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-12-01 14:18:46 +0100
committerAndrey Andreev <narf@devilix.net>2016-12-01 14:18:46 +0100
commit5e47aa3d87b44627bd79850536bfacd8d39a92a6 (patch)
treeda4c5f9470566add053b96b08e782c55c1f55659 /tests/codeigniter
parent0c84ef9a33d18d758e36447fd18a240a458ae2bc (diff)
Remove previously deprecated HTML helper functions br(), nbs()
Diffstat (limited to 'tests/codeigniter')
-rw-r--r--tests/codeigniter/helpers/html_helper_test.php16
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('&nbsp;&nbsp;&nbsp;', 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
+}