diff options
author | Andrey Andreev <narf@devilix.net> | 2015-10-30 10:47:35 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-10-30 10:47:35 +0100 |
commit | d2ea460f138fd1f9a527c9b0ece7cce369fd430b (patch) | |
tree | b65894caf8cd3f1d944342d0dc4bd1e7d533e730 /tests/codeigniter | |
parent | b2d2535cc0326acea4722f7be9819cf58fd155da (diff) |
Fix #3201
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/Common_test.php | 5 |
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 "quoted" text.' ); + + $this->assertEquals( + html_escape(array('associative' => 'and', array('multi' => 'dimentional'))), + array('associative' => 'and', array('multi' => 'dimentional')) + ); } }
\ No newline at end of file |