summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-10-30 10:47:35 +0100
committerAndrey Andreev <narf@devilix.net>2015-10-30 10:47:35 +0100
commitd2ea460f138fd1f9a527c9b0ece7cce369fd430b (patch)
treeb65894caf8cd3f1d944342d0dc4bd1e7d533e730 /tests
parentb2d2535cc0326acea4722f7be9819cf58fd155da (diff)
Fix #3201
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Common_test.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/codeigniter/core/Common_test.php b/tests/codeigniter/core/Common_test.php
index 999b49cb3..81a185eaf 100644
--- a/tests/codeigniter/core/Common_test.php
+++ b/tests/codeigniter/core/Common_test.php
@@ -47,6 +47,11 @@ class Common_test extends CI_TestCase {
html_escape('Here is a string containing "quoted" text.'),
'Here is a string containing &quot;quoted&quot; text.'
);
+
+ $this->assertEquals(
+ html_escape(array('associative' => 'and', array('multi' => 'dimentional'))),
+ array('associative' => 'and', array('multi' => 'dimentional'))
+ );
}
} \ No newline at end of file