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.
19 lines
462 B
19 lines
462 B
12 years ago
|
var mkdirp = require('../');
|
||
|
var path = require('path');
|
||
|
var fs = require('fs');
|
||
|
var test = require('tap').test;
|
||
|
|
||
|
test('root', function (t) {
|
||
|
// '/' on unix, 'c:/' on windows.
|
||
|
var file = path.resolve('/');
|
||
|
|
||
|
mkdirp(file, 0755, function (err) {
|
||
|
if (err) throw err
|
||
|
fs.stat(file, function (er, stat) {
|
||
|
if (er) throw er
|
||
|
t.ok(stat.isDirectory(), 'target is a directory');
|
||
|
t.end();
|
||
|
})
|
||
|
});
|
||
|
});
|