developertrinidad08 7e6cf29479 first commit
2023-01-16 18:11:14 -03:00

18 lines
401 B
JavaScript

var vows = require('../../../lib/vows'),
assert = require('assert');
var obvious;
vows.describe('passing').addBatch({
'Obvious test': obvious = {
topic: function () {
this.callback(null, true);
},
'should work': function (result) {
assert.ok(result);
}
},
'Obvious test #2': obvious,
'Obvious test #3': obvious,
'Obvious test #4': obvious
}).export(module);