diff --git a/test/simple/test-url.js b/test/simple/test-url.js index c6c47292e05..ff55eb20161 100644 --- a/test/simple/test-url.js +++ b/test/simple/test-url.js @@ -335,6 +335,13 @@ var parseTests = { hostname: 'bucket_name.s3.amazonaws.com', pathname: '/image.jpg', href: 'http://bucket_name.s3.amazonaws.com/image.jpg' + }, + 'git+http://github.com/joyent/node.git': { + protocol: 'git+http:', + slashes: true, + host: 'github.com', + pathname: '/joyent/node.git', + href: 'git+http://github.com/joyent/node.git' } };