apeman-app-json
Version:
apeman app to serve dynamic json.
22 lines (16 loc) • 329 B
JavaScript
/**
* Test case for index.
* Runs with nodeunit.
*/
var index = require('../lib/index.js');
exports.setUp = function (done) {
done();
};
exports.tearDown = function (done) {
done();
};
exports['Create an app.'] = function (test) {
test.ok(index);
test.equal(typeof index, 'function');
test.done();
};