Working on SPR-5631 - Implicit /** mapping on type-level @RequestMapping
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
/*
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* 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.springframework.web.servlet.mvc.annotation;
|
||||
|
||||
import java.io.IOException;
|
||||
@@ -8,8 +24,8 @@ import javax.servlet.ServletException;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
import org.junit.Test;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.beans.BeansException;
|
||||
import org.springframework.beans.factory.support.RootBeanDefinition;
|
||||
@@ -73,7 +89,6 @@ public class UriTemplateServletAnnotationControllerTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("In progress")
|
||||
public void relative() throws Exception {
|
||||
initServlet(RelativePathUriTemplateController.class);
|
||||
|
||||
@@ -120,7 +135,6 @@ public class UriTemplateServletAnnotationControllerTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("In progress")
|
||||
public void implicitSubPath() throws Exception {
|
||||
initServlet(ImplicitSubPathController.class);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user