Skip to content

Commit

Permalink
[test] Add fixtures for supress-stdout test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Oct 14, 2011
1 parent 50052f5 commit 8ce12a5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/fixtures/supress-stdout/output.js
@@ -0,0 +1,16 @@
var vows = require('../../../lib/vows'),
assert = require('assert');

vows.describe('output').addBatch({
'outputting': {
topic: function () {
console.log('goo');
this.callback(null, true);
},
'should work': function (result) {
console.log('goo');
assert.ok(result);
}
},
}).export(module);

0 comments on commit 8ce12a5

Please sign in to comment.