catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
23 lines (16 loc) • 483 B
JavaScript
;
var grunt = require('grunt');
exports.clean = {
short: function(test) {
test.expect(1);
var expected = grunt.file.exists('tmp/sample_short');
test.equal(expected, false, 'should remove the short directory using clean');
test.done();
},
long: function(test) {
test.expect(1);
var expected = grunt.file.exists('tmp/sample_long');
test.equal(expected, false, 'should remove the long directory using clean');
test.done();
}
};