Sha256: 03c8c19b8593bb18de9b99b271fe7ab26fbfc4fcd9fcada200839a873f7485b1
Contents?: true
Size: 871 Bytes
Versions: 186
Compression:
Stored size: 871 Bytes
Contents
var mkdirp = require('../'); var path = require('path'); var fs = require('fs'); var exists = fs.exists || path.exists; var test = require('tap').test; var _0777 = parseInt('0777', 8); var _0755 = parseInt('0755', 8); test('async perm', function (t) { t.plan(5); var file = '/tmp/' + (Math.random() * (1<<30)).toString(16); mkdirp(file, _0755, function (err) { t.ifError(err); exists(file, function (ex) { t.ok(ex, 'file created'); fs.stat(file, function (err, stat) { t.ifError(err); t.equal(stat.mode & _0777, _0755); t.ok(stat.isDirectory(), 'target not a directory'); }) }) }); }); test('async root perm', function (t) { mkdirp('/tmp', _0755, function (err) { if (err) t.fail(err); t.end(); }); t.end(); });
Version data entries
186 entries across 138 versions & 28 rubygems