Sha256: 048142f283f28bf8bce1c84719f7f3e57988be6619c4d31da5a46729e0bbd1fd
Contents?: true
Size: 731 Bytes
Versions: 18
Compression:
Stored size: 731 Bytes
Contents
/*! * socket.io-node * Copyright(c) 2011 LearnBoost <dev@learnboost.com> * MIT Licensed */ (function (module, io, should) { module.exports = { 'client version number': function () { io.version.should().match(/([0-9]+)\.([0-9]+)\.([0-9]+)/); }, 'socket.io protocol version': function () { io.protocol.should().be.a('number'); io.protocol.toString().should().match(/^\d+$/); }, 'socket.io available transports': function () { (io.transports.length > 0).should().be_true; } }; })( 'undefined' == typeof module ? module = {} : module , 'undefined' == typeof io ? require('socket.io-client') : io , 'undefined' == typeof should ? require('should') : should );
Version data entries
18 entries across 18 versions & 3 rubygems