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.
30 lines
764 B
30 lines
764 B
13 years ago
|
var test = require("tap").test
|
||
|
, fs = require("fs")
|
||
|
, path = require("path")
|
||
|
, existsSync = fs.existsSync || path.existsSync
|
||
|
, spawn = require("child_process").spawn
|
||
|
, npm = require("../../")
|
||
|
|
||
|
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 () {
|
||
|
spawn("rm", [ "-rf", __dirname + "/false_name/node_modules" ])
|
||
|
.on("exit", function () {
|
||
|
fs.mkdirSync(__dirname + "/false_name/node_modules")
|
||
|
cb()
|
||
|
})
|
||
|
})
|
||
|
}
|