mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
var hh = require('./http-https.js')
|
|
var assert = require('assert')
|
|
|
|
assert.equal(hh.getModule('https://foo'), hh.https)
|
|
assert.equal(hh.getModule('http://foo'), hh.http)
|
|
console.log('ok')
|