You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-webflux/src/test/kotlin/org/springframework/web/reactive/function/server/CoRouterFunctionDslTests.kt
+69
Original file line number
Diff line number
Diff line change
@@ -193,6 +193,45 @@ class CoRouterFunctionDslTests {
193
193
.verifyComplete()
194
194
}
195
195
196
+
@Test
197
+
funnestedContextProvider() {
198
+
val mockRequest = get("https://example.com/nested/")
199
+
.header("Custom-Header", "foo")
200
+
.build()
201
+
val request =DefaultServerRequest(MockServerWebExchange.from(mockRequest), emptyList())
0 commit comments