Index: test/org/apache/taglibs/standard/tag/el/xml/Test30068.java =================================================================== --- test/org/apache/taglibs/standard/tag/el/xml/Test30068.java (revision 0) +++ test/org/apache/taglibs/standard/tag/el/xml/Test30068.java (revision 0) @@ -0,0 +1,47 @@ +/* + * Copyright 1999,2004 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.taglibs.standard.tag.el.xml; + +import javax.servlet.jsp.*; +import org.apache.cactus.*; +import org.apache.taglibs.standard.testutil.TestUtil; + +public class Test30068 extends JspTestCase { + + public Test30068(String name) { + super(name); + } + + protected void setUp() throws Exception { + super.setUp(); + } + + protected void tearDown() throws Exception { + super.tearDown(); + } + + public void test30068() throws Exception { + String toInclude = TestUtil.getTestJsp(this); + pageContext.include(toInclude); + + String correct = (String) pageContext.getAttribute("correct", PageContext.APPLICATION_SCOPE); + String incorrect = (String) pageContext.getAttribute("incorrect", PageContext.APPLICATION_SCOPE); + + assertEquals("The incorrect answer is not an empty string", "", incorrect); + assertEquals("The correct answer would be 42", "42", correct); + } +} Index: test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.xml =================================================================== --- test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.xml (revision 0) +++ test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.xml (revision 0) @@ -0,0 +1,4 @@ + + + 42 + Index: test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.jsp =================================================================== --- test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.jsp (revision 0) +++ test/web/org/apache/taglibs/standard/tag/el/xml/Test30068.jsp (revision 0) @@ -0,0 +1,30 @@ + +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %> + + + + + + + + + + + + + + + + + + + + + + + + + +Correct: ${correct}
+Incorrect: ${incorrect}