mirror of https://gitee.com/openkylin/nodejs.git
24 lines
590 B
JavaScript
24 lines
590 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const ClientRequest = require('http').ClientRequest;
|
|
|
|
{
|
|
const req = new ClientRequest({ createConnection: () => {} });
|
|
assert.strictEqual(req.path, '/');
|
|
assert.strictEqual(req.method, 'GET');
|
|
}
|
|
|
|
{
|
|
const req = new ClientRequest({ method: '', createConnection: () => {} });
|
|
assert.strictEqual(req.path, '/');
|
|
assert.strictEqual(req.method, 'GET');
|
|
}
|
|
|
|
{
|
|
const req = new ClientRequest({ path: '', createConnection: () => {} });
|
|
assert.strictEqual(req.path, '/');
|
|
assert.strictEqual(req.method, 'GET');
|
|
}
|