You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
483 B
22 lines
483 B
'use strict';
|
|
|
|
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();
|
|
}
|
|
};
|