mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
518 B
13 lines
518 B
10 years ago
|
'use strict';
|
||
|
var assert = require('assert');
|
||
|
var net = require('net');
|
||
|
var dgram = require('dgram');
|
||
|
var common = require('../common');
|
||
|
|
||
|
assert.ok((new net.Server()).ref() instanceof net.Server);
|
||
|
assert.ok((new net.Server()).unref() instanceof net.Server);
|
||
|
assert.ok((new net.Socket()).ref() instanceof net.Socket);
|
||
|
assert.ok((new net.Socket()).unref() instanceof net.Socket);
|
||
|
assert.ok((new dgram.Socket('udp4')).ref() instanceof dgram.Socket);
|
||
|
assert.ok((new dgram.Socket('udp6')).unref() instanceof dgram.Socket);
|