Author: markt
Date: Thu Jan  7 18:23:14 2010
New Revision: 896953

URL: http://svn.apache.org/viewvc?rev=896953&view=rev
Log:
Add another test case. This one passes at the moment but would fail with some 
of the ideas I have had to fix the tests that currently fail.

Modified:
    tomcat/trunk/test/org/apache/el/TestELInJsp.java
    tomcat/trunk/test/webapp/el-misc.jsp

Modified: tomcat/trunk/test/org/apache/el/TestELInJsp.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/el/TestELInJsp.java?rev=896953&r1=896952&r2=896953&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/el/TestELInJsp.java (original)
+++ tomcat/trunk/test/org/apache/el/TestELInJsp.java Thu Jan  7 18:23:14 2010
@@ -276,6 +276,7 @@
         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);
     }
 
 

Modified: tomcat/trunk/test/webapp/el-misc.jsp
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/el-misc.jsp?rev=896953&r1=896952&r2=896953&view=diff
==============================================================================
--- tomcat/trunk/test/webapp/el-misc.jsp (original)
+++ tomcat/trunk/test/webapp/el-misc.jsp Thu Jan  7 18:23:14 2010
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to