We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec867b6 commit c3afbbcCopy full SHA for c3afbbc
lib/vows.js
@@ -5,11 +5,15 @@
5
//
6
// var vows = require('vows');
7
8
-// vows.describe('Deep Thought').addVows(function () {
9
-// question('what is the answer to the universe?').addVow(function (answer) {
10
-// assert.equals(answer, 42);
11
-// }, 'it should know the answer to the ultimate question of life');
12
-// });
+// vows.describe('Deep Thought').addVows({
+// "An instance of DeepThought": {
+// topic: new DeepThought,
+//
+// "should know the answer to the ultimate question of life": function (deepThought) {
13
+// assert.equal (deepThought.question('what is the answer to the universe?'), 42);
14
+// }
15
16
+// }).run();
17
18
var sys = require('sys'),
19
events = require('events'),
0 commit comments