File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function compilePattern(pattern) {
22
22
23
23
var source = pattern . replace ( paramMatcher , function ( match , pathSegment ) {
24
24
paramNames . push ( getParamName ( pathSegment ) ) ;
25
- return pathSegment === '*' ? '(.*?)' : '([^. /?#]+)' ;
25
+ return pathSegment === '*' ? '(.*?)' : '([^/?#]+)' ;
26
26
} ) ;
27
27
28
28
compiled . matcher = new RegExp ( '^' + source + '$' , 'i' ) ;
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ describe('Path.extractParams', function () {
32
32
expect ( Path . extractParams ( pattern , 'users/123' ) ) . toBe ( null ) ;
33
33
} ) ;
34
34
} ) ;
35
+
36
+ describe ( 'and the path matches with a segment containing a .' , function ( ) {
37
+ it ( 'returns an object with the params' , function ( ) {
38
+ expect ( Path . extractParams ( pattern , 'comments/foo.bar/edit' ) ) . toEqual ( { id : 'foo.bar' } ) ;
39
+ } ) ;
40
+ } ) ;
35
41
} ) ;
36
42
37
43
describe ( 'when a pattern has characters that have special URL encoding' , function ( ) {
You can’t perform that action at this time.
0 commit comments