]> git.r.bdr.sh - rbdr/dotfiles/blob - atom/packages/ex-mode/node_modules/fs-plus/node_modules/mkdirp/test/perm.js
Adds atom packages
[rbdr/dotfiles] / atom / packages / ex-mode / node_modules / fs-plus / node_modules / mkdirp / test / perm.js
1 var mkdirp = require('../');
2 var path = require('path');
3 var fs = require('fs');
4 var test = require('tap').test;
5
6 test('async perm', function (t) {
7 t.plan(2);
8 var file = '/tmp/' + (Math.random() * (1<<30)).toString(16);
9
10 mkdirp(file, 0755, function (err) {
11 if (err) t.fail(err);
12 else path.exists(file, function (ex) {
13 if (!ex) t.fail('file not created')
14 else fs.stat(file, function (err, stat) {
15 if (err) t.fail(err)
16 else {
17 t.equal(stat.mode & 0777, 0755);
18 t.ok(stat.isDirectory(), 'target not a directory');
19 t.end();
20 }
21 })
22 })
23 });
24 });
25
26 test('async root perm', function (t) {
27 mkdirp('/tmp', 0755, function (err) {
28 if (err) t.fail(err);
29 t.end();
30 });
31 t.end();
32 });