Skip to content

Commit

Permalink
Remove unneeded test function.
Browse files Browse the repository at this point in the history
  • Loading branch information
CL0SeY committed Oct 6, 2014
1 parent d8f155f commit ad5acbb
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions test/resource.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,6 @@ function read(fullpath) {
return fs.readFileSync(fullpath).toString();
}

function readStream(stream, done) {
var resp = '';
if (!stream) {
done(null);
return;
}
stream.on('data', function(content) {
resp += content;
});
stream.on('end', function() {
done(resp);
});
}

describe('resource tests', function() {
var cache,
remoteDir,
Expand Down

0 comments on commit ad5acbb

Please sign in to comment.