Add another test case. This one passes at the moment but would fail with some of...
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 7 Jan 2010 18:23:14 +0000 (18:23 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 7 Jan 2010 18:23:14 +0000 (18:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@896953 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/el/TestELInJsp.java
test/webapp/el-misc.jsp

index a334255..7aad715 100644 (file)
@@ -276,6 +276,7 @@ public class TestELInJsp extends TomcatBaseTest {
         assertTrue(result.indexOf("2az-07") > 0);
         assertTrue(result.indexOf("08-a2z") > 0);
         assertTrue(result.indexOf("09-az2") > 0);
+        assertTrue(result.indexOf("10-${'foo'}bar") > 0);
     }
 
 
index d542e37..0c8cba1 100644 (file)
@@ -28,5 +28,6 @@
     <tags:echo echo="${\"2\"}az-07" />
     <tags:echo echo="08-a${\"2\"}z" />
     <tags:echo echo="09-az${\"2\"}" />
+    <tags:echo echo="10-\${'foo'}${'bar'}" />
   </body>
 </html>
\ No newline at end of file