UNPKG

grunt-commonizor

Version:

plugin for building js file to support commonjs

48 lines (43 loc) 1.54 kB
'use strict'; var grunt = require('grunt'); /* ======== A Handy Little Nodeunit Reference ======== https://github.com/caolan/nodeunit Test methods: test.expect(numAssertions) test.done() Test assertions: test.ok(value, [message]) test.equal(actual, expected, [message]) test.notEqual(actual, expected, [message]) test.deepEqual(actual, expected, [message]) test.notDeepEqual(actual, expected, [message]) test.strictEqual(actual, expected, [message]) test.notStrictEqual(actual, expected, [message]) test.throws(block, [error], [message]) test.doesNotThrow(block, [error], [message]) test.ifError(value) */ exports.commonizor = { setUp: function(done) { // setup here if necessary // var testCommon = require('build/commonizor.common.js'); done(); }, default_options: function(test) { test.expect(1); // var actual = grunt.file.read('tmp/default_options'); // var expected = grunt.file.read('test/expected/default_options'); // test.equal(actual, expected, 'should describe what the default behavior is.'); test.equal(1, true, '1 should be equal to true.'); test.done(); }, custom_options: function(test) { test.expect(1); // var actual = grunt.file.read('tmp/custom_options'); // var expected = grunt.file.read('test/expected/custom_options'); // test.equal(actual, expected, 'should describe what the custom option(s) behavior is.'); test.equal(1, true, '1 should be equal to true.'); test.done(); }, };