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.
40 lines
1.1 KiB
40 lines
1.1 KiB
'use strict';
|
|
|
|
var grunt = require('grunt');
|
|
|
|
exports.cssmin = {
|
|
main: function(test) {
|
|
test.expect(1);
|
|
|
|
var expect = grunt.file.read('test/expected/style.css');
|
|
var result = grunt.file.read('tmp/style.css');
|
|
test.equal(expect, result, 'should concat and minify an array of css files in order using clean-css');
|
|
|
|
test.done();
|
|
},
|
|
with_banner: function(test) {
|
|
test.expect(1);
|
|
|
|
var expect = grunt.file.read('test/expected/with-banner.css');
|
|
var result = grunt.file.read('tmp/with-banner.css');
|
|
test.equal(expect, result, 'should concat, minify and prefix banner');
|
|
|
|
test.done();
|
|
},
|
|
empty: function(test) {
|
|
test.expect(1);
|
|
|
|
test.ok(!grunt.file.exists('tmp/idontexist.css'), 'Empty minified file should not exist');
|
|
|
|
test.done();
|
|
},
|
|
remove_first_comment: function(test) {
|
|
test.expect(1);
|
|
|
|
var expect = grunt.file.read('test/expected/input_bannered.css');
|
|
var result = grunt.file.read('tmp/remove_first_comment.css');
|
|
test.equal(expect, result, 'should minify and replace banner');
|
|
|
|
test.done();
|
|
}
|
|
};
|