Opal-Estate-Pro/node_modules/event-stream/test/stringify.js
2019-09-13 09:44:33 +07:00

16 lines
237 B
JavaScript

var es = require('../')
exports['handle buffer'] = function (t) {
es.stringify().on('data', function (d) {
t.equal(d.trim(), JSON.stringify('HELLO'))
t.end()
}).write(new Buffer('HELLO'))
}
require('./helper')(module)