add test for checkDiskSpace
This commit is contained in:
@@ -776,3 +776,4 @@ function checkDiskSpace(callback) {
|
|||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
/* jslint node:true */
|
||||||
|
/* global it:false */
|
||||||
|
/* global describe:false */
|
||||||
|
/* global before:false */
|
||||||
|
/* global after:false */
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async'),
|
||||||
|
cloudron = require('../cloudron.js'),
|
||||||
|
database = require('../database.js'),
|
||||||
|
expect = require('expect.js');
|
||||||
|
|
||||||
|
function setup(done) {
|
||||||
|
async.series([
|
||||||
|
database.initialize.bind(null),
|
||||||
|
database._clear.bind(null)
|
||||||
|
], done);
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanup(done) {
|
||||||
|
database._clear(done);
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('Cloudron', function () {
|
||||||
|
before(setup);
|
||||||
|
after(cleanup);
|
||||||
|
|
||||||
|
it('can check for disk space', function (done) {
|
||||||
|
cloudron.checkDiskSpace(function (error) {
|
||||||
|
expect(!error).to.be.ok();
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
Reference in New Issue
Block a user