mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

Verify that passing a non-number will throw and that the argument is returned on success. PR-URL: https://github.com/nodejs/io.js/pull/2121 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
18 lines
405 B
JavaScript
18 lines
405 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
socket.bind(common.PORT);
|
|
socket.on('listening', function() {
|
|
var result = socket.setTTL(16);
|
|
assert.strictEqual(result, 16);
|
|
|
|
assert.throws(function() {
|
|
socket.setTTL('foo');
|
|
}, /Argument must be a number/);
|
|
|
|
socket.close();
|
|
});
|