From 2c799a47e2d64467565791a7db3468f254a1f142 Mon Sep 17 00:00:00 2001 From: booo Date: Thu, 14 Apr 2011 17:27:53 +0200 Subject: removed async_testing as sub repo; fixed test suites --- src/nodejs/tests/async_basis_test.js | 2 +- src/nodejs/tests/node-async-testing | 1 - src/nodejs/tests/pathparsing.js | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 160000 src/nodejs/tests/node-async-testing diff --git a/src/nodejs/tests/async_basis_test.js b/src/nodejs/tests/async_basis_test.js index 47062e3..c083a19 100644 --- a/src/nodejs/tests/async_basis_test.js +++ b/src/nodejs/tests/async_basis_test.js @@ -1,5 +1,5 @@ if (module == require.main) { - return require('./node-async-testing/lib/async_testing').run(process.ARGV); + return require('async_testing').run(__filename, process.ARGV); } module.exports = { diff --git a/src/nodejs/tests/node-async-testing b/src/nodejs/tests/node-async-testing deleted file mode 160000 index a87f89d..0000000 --- a/src/nodejs/tests/node-async-testing +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a87f89d3f2437133364e1edc059a71a895208355 diff --git a/src/nodejs/tests/pathparsing.js b/src/nodejs/tests/pathparsing.js index ebd5baf..a012329 100644 --- a/src/nodejs/tests/pathparsing.js +++ b/src/nodejs/tests/pathparsing.js @@ -1,6 +1,6 @@ if (module == require.main) { - async_testing = require('./node-async-testing/lib/async_testing'); - return async_testing.run(process.ARGV); + async_testing = require('async_testing'); + return async_testing.run(__filename, process.ARGV); } var assert = require('assert'); -- cgit v1.2.3