blob: a55c6547e33e7e57f055060d9a0c8f565eeab0b6 [file]
var should = require('should');
var assert = require('assert');
var plugin = require('../index');
describe('construct',function(){
it('should work',function(done){
var req = plugin.init();
req.onrequest(null,null,function(err){
should(err).be.null
done();
})
}) ;
});