10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
|
|
var zmq = require('..')
|
|
, should = require('should');
|
|
|
|
describe('proxy', function() {
|
|
it('should be a function off the module namespace', function (done) {
|
|
zmq.proxy.should.be.a.Function;
|
|
done();
|
|
});
|
|
}); |