UNPKG

182 BJavaScriptView Raw
1/**
2 * Test case for ifSure.
3 * Runs with nodeunit.
4 */
5
6var ifSure = require('../lib/if_sure.js');
7
8exports['If sure'] = function (test) {
9 test.ok(ifSure);
10 test.done();
11};
12