You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
467 B

/**
* Testing requires
*/
var should = require('should')
, stream = require('./util').testStream;
/**
* Units under test
*/
var Connection = require('../connection');
describe('Connection', function() {
beforeEach(function () {
var that = this;
this.stream = stream();
this.conn = new Connection(this.stream);
});
describe('parsing', require('./connection.parse.js'));
describe('transmission', require('./connection.transmit.js'));
});