Navigation Menu

Skip to content

Commit

Permalink
[tap] final cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dscape committed Sep 9, 2011
1 parent 6ad49f5 commit c997de0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/foo.js
Expand Up @@ -9,4 +9,4 @@ tests.foo_ok = function (t) { assert.ok(t); };
tests.bar = function (cb) { cb(null,'bar'); };
tests.bar_ok = function (_,t) { assert.equal(t,'bar'); };

ensure((__filename + '_foo'),tests,module);
ensure(__filename,tests,module);
2 changes: 1 addition & 1 deletion test/select.js
Expand Up @@ -12,4 +12,4 @@ tests.also_good = tests.good;
tests.also_good_ok = tests.good_ok;

ensure((__filename + '_single_test'), tests, module, 'good');
ensure((__filename + '_mult_test'), tests, module, process.argv[2]); // good,also_good
ensure((__filename + '_mult_test'), tests, module,process.argv[2]); // good,also_good
2 changes: 1 addition & 1 deletion test/tap.js
Expand Up @@ -14,4 +14,4 @@ tests.plan_works_ok = function (value) {
t.equal(value,'bar');
};

ensure((__filename + '_tap'),tests,module);
ensure(__filename,tests,module,process.argv[2]);
2 changes: 1 addition & 1 deletion test/use.js
Expand Up @@ -6,4 +6,4 @@ var ensure = require('../ensure').use('vows')
tests.vows = function (cb) { cb(true); };
tests.vows_ok = function (t) { assert.ok(t); };

ensure((__filename + '_use'),tests,module);
ensure(__filename ,tests,module);

0 comments on commit c997de0

Please sign in to comment.