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.
51 lines
1.1 KiB
51 lines
1.1 KiB
var test = require("tap").test
|
|
|
|
var fixNameField = require("../lib/fixer.js").fixNameField
|
|
|
|
test("a simple scoped module has a valid name", function (t) {
|
|
var data = {name : "@org/package"}
|
|
fixNameField(data, false)
|
|
t.equal(data.name, "@org/package", "name was unchanged")
|
|
|
|
t.end()
|
|
})
|
|
|
|
test("'org@package' is not a valid name", function (t) {
|
|
t.throws(function () {
|
|
fixNameField({name : "org@package"}, false)
|
|
}, "blows up as expected")
|
|
|
|
t.end()
|
|
})
|
|
|
|
test("'org=package' is not a valid name", function (t) {
|
|
t.throws(function () {
|
|
fixNameField({name : "org=package"}, false)
|
|
}, "blows up as expected")
|
|
|
|
t.end()
|
|
})
|
|
|
|
test("'@org=sub/package' is not a valid name", function (t) {
|
|
t.throws(function () {
|
|
fixNameField({name : "@org=sub/package"}, false)
|
|
}, "blows up as expected")
|
|
|
|
t.end()
|
|
})
|
|
|
|
test("'@org/' is not a valid name", function (t) {
|
|
t.throws(function () {
|
|
fixNameField({name : "@org/"}, false)
|
|
}, "blows up as expected")
|
|
|
|
t.end()
|
|
})
|
|
|
|
test("'@/package' is not a valid name", function (t) {
|
|
t.throws(function () {
|
|
fixNameField({name : "@/package"}, false)
|
|
}, "blows up as expected")
|
|
|
|
t.end()
|
|
})
|
|
|