xeno-canto.js/test/xeno-canto_test.js
Patrick De Marta c31df7fe05 init repo
2013-11-12 01:34:04 +01:00

37 lines
934 B
JavaScript

'use strict';
var xeno_canto = require('../lib/xeno-canto.js');
/*
======== 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['awesome'] = {
setUp: function(done) {
// setup here
done();
},
'no args': function(test) {
test.expect(1);
// tests here
test.equal(xeno_canto.awesome(), 'awesome', 'should be awesome.');
test.done();
},
};