mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 13:10:09 +02:00
packager
This commit is contained in:
22
app/node_modules/mkpath/test/root.js
generated
vendored
Normal file
22
app/node_modules/mkpath/test/root.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Tests borrowed from substack's node-mkdirp
|
||||
* https://github.com/substack/node-mkdirp */
|
||||
|
||||
var mkpath = 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('/');
|
||||
|
||||
mkpath(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();
|
||||
})
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user