mirror of https://github.com/nodejs/node.git
21 lines
361 B
JavaScript
21 lines
361 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var zlib = require('zlib');
|
|
|
|
var closed = false;
|
|
|
|
zlib.gzip('hello', function(err, out) {
|
|
var unzip = zlib.createGunzip();
|
|
unzip.close(function() {
|
|
closed = true;
|
|
});
|
|
assert.throws(function() {
|
|
unzip.write(out);
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(closed);
|
|
});
|