Skip to content

Commit

Permalink
another test, just to test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Jun 4, 2010
1 parent 0e3b661 commit 7ce4579
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/other-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
var path = require('path');

require.paths.unshift(path.join(__dirname, '..', 'lib'));

var assert = require('assert');
var vows = require('vows');

vows.describe("Vows/other").addVows({
"Another test": {
topic: true,
"exists in the test/ folder!": function (topic) {
assert.ok (topic);
}
}
}).export(this);

0 comments on commit 7ce4579

Please sign in to comment.