Have UT start and stop a server.

This commit is contained in:
Arthur Britto
2012-09-17 15:35:07 -07:00
parent 1d686a15d8
commit 6847aaace5
4 changed files with 82 additions and 20 deletions

View File

@@ -74,7 +74,7 @@ var emptyPath = function(dirPath, done) {
// Remove path recursively.
var rmPath = function(dirPath, done) {
console.log("rmPath: %s", dirPath);
// console.log("rmPath: %s", dirPath);
fs.lstat(dirPath, function (err, stats) {
if (err && err.code == "ENOENT") {