芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/select-hose/test/fixtures.js
var assert = require('assert'); function expectData(stream, expected, callback) { var actual = ''; stream.on('data', function(chunk) { actual += chunk; }); stream.on('end', function() { assert.equal(actual, expected); callback(); }); } exports.expectData = expectData;