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.
|
|
var grunt = require('grunt'); var fs = require('fs');
exports.copy = { main: function(test) { 'use strict';
test.expect(3);
var actual = fs.readdirSync('tmp/copy_test_files').sort(); var expected = fs.readdirSync('test/expected/copy_test_files').sort(); test.deepEqual(expected, actual, 'should copy several files');
actual = fs.readdirSync('tmp/copy_test_mix').sort(); expected = fs.readdirSync('test/expected/copy_test_mix').sort(); test.deepEqual(expected, actual, 'should copy a mix of folders and files');
actual = fs.readdirSync('tmp/copy_test_v0.1.0').sort(); expected = fs.readdirSync('test/expected/copy_test_v0.1.0').sort(); test.deepEqual(expected, actual, 'should parse both dest and src templates');
test.done(); },
flatten: function(test) { 'use strict';
test.expect(1);
var actual = fs.readdirSync('tmp/copy_test_flatten').sort(); var expected = fs.readdirSync('test/expected/copy_test_flatten').sort(); test.deepEqual(expected, actual, 'should create a flat structure');
test.done(); },
single: function(test) { 'use strict';
test.expect(1);
var actual = grunt.file.read('tmp/single.js'); var expected = grunt.file.read('test/expected/single.js'); test.equal(expected, actual, 'should allow for single file copy');
test.done(); } };
|