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.
|
|
|
var test = require("tap").test
|
|
|
|
, fs = require("fs")
|
|
|
|
, path = require("path")
|
|
|
|
, existsSync = fs.existsSync || path.existsSync
|
|
|
|
, spawn = require("child_process").spawn
|
|
|
|
, npm = require("../../")
|
|
|
|
, rimraf = require("rimraf")
|
|
|
|
|
|
|
|
test("not every pkg.name can be required", function (t) {
|
|
|
|
t.plan(1)
|
|
|
|
|
|
|
|
setup(function () {
|
|
|
|
npm.install(".", function (err) {
|
|
|
|
if (err) return t.fail(err)
|
|
|
|
t.ok(existsSync(__dirname +
|
|
|
|
"/false_name/node_modules/tap/node_modules/buffer-equal"))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
function setup (cb) {
|
|
|
|
process.chdir(__dirname + "/false_name")
|
|
|
|
npm.load(function () {
|
|
|
|
rimraf.sync(__dirname + "/false_name/node_modules")
|
|
|
|
fs.mkdirSync(__dirname + "/false_name/node_modules")
|
|
|
|
cb()
|
|
|
|
})
|
|
|
|
}
|