Sha256: eeb0e70801feb9419e213cb038d3743c99b30ddbbf62015483b84ce875c4ee5f
Contents?: true
Size: 921 Bytes
Versions: 153
Compression:
Stored size: 921 Bytes
Contents
var mkdirp = require('../'); var path = require('path'); var fs = require('fs'); var exists = fs.exists || path.exists; var test = require('tap').test; test('sync perm', function (t) { t.plan(4); var file = '/tmp/' + (Math.random() * (1<<30)).toString(16) + '.json'; mkdirp.sync(file, 0755); 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('sync root perm', function (t) { t.plan(3); var file = '/tmp'; mkdirp.sync(file, 0755); exists(file, function (ex) { t.ok(ex, 'file created'); fs.stat(file, function (err, stat) { t.ifError(err); t.ok(stat.isDirectory(), 'target not a directory'); }) }); });
Version data entries
153 entries across 137 versions & 7 rubygems