diff options
Diffstat (limited to '_test')
-rw-r--r-- | _test/cases/lib/exe/js_js_compress.test.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_test/cases/lib/exe/js_js_compress.test.php b/_test/cases/lib/exe/js_js_compress.test.php index f46cbe227..20ad88210 100644 --- a/_test/cases/lib/exe/js_js_compress.test.php +++ b/_test/cases/lib/exe/js_js_compress.test.php @@ -49,6 +49,11 @@ class js_js_compress_test extends UnitTestCase { $this->assertEqual(js_compress($text), $text); } + function test_dquot2(){ + $text = 'var foo="Now what \\\\\\" \'do we//get /*here*/ ?";'; + $this->assertEqual(js_compress($text), $text); + } + function test_dquotrunaway(){ $text = 'var foo="Now where does it end'; $this->assertEqual(js_compress($text), "$text\n"); //\n is added by compressor |