-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathtask.js
58 lines (45 loc) · 1.3 KB
/
task.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* @fileoverview NodeUnit test
* @copyright Bertrand Chevrier 2012
* @author Bertrand Chevrier <chevrier.bertrand@gmail.com>
* @license MIT
*
* @module test/jsdoc-task
*/
var fs = require('fs');
/**
* NodeUnit group of test that check the result once the task has been launched
*
* @see https://github.com/caolan/nodeunit/
*
* @class JsdocTaskTest
*/
var JsdocTaskTest = {
/**
* Check the destination directory exists
* @memberOf JsdociTaskTest
* @param {Object} test - the node unit test context
*/
'destination check': function(test) {
'use strict';
test.expect(1);
fs.exists(this.destination, function(result) {
test.ok(result === true, 'The documentation destination should exists');
test.done();
});
},
/**
* Check the documentation content
* @memberOf JsdociTaskTest
* @param {Object} test - the node unit test context
*/
'content check': function(test) {
var base = this.destination + '/';
test.expect(this.expectedFiles.length);
this.expectedFiles.forEach(function(file) {
test.ok(fs.existsSync(base + file), 'The file ' + base + file + ' should exists');
});
test.done();
}
};
module.exports = exports = JsdocTaskTest;