1var through = require('through2'); 2var readonly = require('../'); 3 4module.exports = function () { 5 var stream = through(); 6 stream.end('wooooo\n'); 7 return readonly(stream); 8}; 9 10