Sha256: cbc18d59ca3dbef74fae86ba6632574f1920989a1bb9cc384175591acbaa752c

Contents?: true

Size: 868 Bytes

Versions: 186

Compression:

Stored size: 868 Bytes

Contents

var mkdirp = require('../');
var path = require('path');
var test = require('tap').test;
var mockfs = require('mock-fs');
var _0777 = parseInt('0777', 8);
var _0755 = parseInt('0755', 8);

test('opts.fs sync', function (t) {
    t.plan(4);
    
    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 = '/beep/boop/' + [x,y,z].join('/');
    var xfs = mockfs.fs();
    
    mkdirp.sync(file, { fs: xfs, mode: _0755 });
    xfs.exists(file, function (ex) {
        t.ok(ex, 'created file');
        xfs.stat(file, function (err, stat) {
            t.ifError(err);
            t.equal(stat.mode & _0777, _0755);
            t.ok(stat.isDirectory(), 'target not a directory');
        });
    });
});

Version data entries

186 entries across 138 versions & 28 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.18.0 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.18.2 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.16.1 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.15.2 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.18.4 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.18.1 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.14.0 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/mkdirp/test/opts_fs_sync.js
enju_library-0.3.8 spec/dummy/node_modules/mkdirp/test/opts_fs_sync.js
enju_library-0.3.8 spec/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.4.1 node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.4.1 node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.4.0 node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.4.0 node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.3.3 node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js
ilog-0.3.3 node_modules/mkdirp/test/opts_fs_sync.js
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/mkdirp/test/opts_fs_sync.js
jester-data-8.0.0 node_modules/mkdirp/test/opts_fs_sync.js