| Index: third_party/pkg/route_hierarchical/test/url_template_test.dart
|
| ===================================================================
|
| --- third_party/pkg/route_hierarchical/test/url_template_test.dart (revision 33054)
|
| +++ third_party/pkg/route_hierarchical/test/url_template_test.dart (working copy)
|
| @@ -59,12 +59,6 @@
|
| new UrlMatch(r'/foo', '/foo/bar', {}));
|
| });
|
|
|
| - test('should match without leading slashes', () {
|
| - var tmpl = new UrlTemplate(r'foo');
|
| - expect(tmpl.match(r'foo'),
|
| - new UrlMatch(r'foo', '', {}));
|
| - });
|
| -
|
| test('should reverse', () {
|
| var tmpl = new UrlTemplate('/:a/:b/:c');
|
| expect(tmpl.reverse(), '/null/null/null');
|
|
|