mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
890 B
42 lines
890 B
global.FAKE_WINDOWS = true
|
|
|
|
var rps = require('../index.js')
|
|
var test = require("tap").test
|
|
var path = require("path")
|
|
|
|
var cases = {
|
|
"C:\\x\\y\\z": {
|
|
raw: 'C:\\x\\y\\z',
|
|
scope: null,
|
|
name: null,
|
|
rawSpec: 'C:\\x\\y\\z',
|
|
spec: path.resolve('C:\\x\\y\\z'),
|
|
type: 'local'
|
|
},
|
|
"foo@C:\\x\\y\\z": {
|
|
raw: 'foo@C:\\x\\y\\z',
|
|
scope: null,
|
|
name: 'foo',
|
|
rawSpec: 'C:\\x\\y\\z',
|
|
spec: path.resolve('C:\\x\\y\\z'),
|
|
type: 'local'
|
|
},
|
|
"foo@/foo/bar/baz": {
|
|
raw: 'foo@/foo/bar/baz',
|
|
scope: null,
|
|
name: 'foo',
|
|
rawSpec: '/foo/bar/baz',
|
|
spec: path.resolve('/foo/bar/baz'),
|
|
type: 'local'
|
|
}
|
|
}
|
|
|
|
test("parse a windows path", function (t) {
|
|
t.plan( Object.keys(cases).length )
|
|
Object.keys(cases).forEach(function (c) {
|
|
var expect = cases[c]
|
|
rps(c, function(err, actual) {
|
|
t.same(actual, expect, c)
|
|
})
|
|
})
|
|
})
|
|
|