As per the PathPatterns spec, a pattern of /* should match zero or more characters. See spec
However, the following is the current state:
| Pattern |
Expected |
Actual |
| / |
match |
no -match |
| /abc |
match |
match |
| /abc/def |
no-match |
match |
The first and third cases fail
Failing test MethodLevelPathPatternsTest.java#L34
As per the PathPatterns spec, a pattern of
/*should match zero or more characters. See specHowever, the following is the current state:
The first and third cases fail
Failing test MethodLevelPathPatternsTest.java#L34