Sha256: d7768d1477c4b1a578bff8395977c1b5a9dc1231e6b341790c4017c00d3dad44
Contents?: true
Size: 1.01 KB
Versions: 69
Compression:
Stored size: 1.01 KB
Contents
/* 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('implicit mode from umask', function (t) { t.plan(2); var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var file = '/tmp/' + [x,y,z].join('/'); mkpath(file, function (err) { if (err) t.fail(err); else path.exists(file, function (ex) { if (!ex) t.fail('file not created') else fs.stat(file, function (err, stat) { if (err) t.fail(err) else { t.equal(stat.mode & 0777, 0777 & (~process.umask())); t.ok(stat.isDirectory(), 'target not a directory'); t.end(); } }) }) }); });
Version data entries
69 entries across 69 versions & 2 rubygems