it('websocket: should have a get(/test/:name)', function(done){
        sio.emit('s', "get", "/test/felix", {},{}, function(status, headers, body){
            expect(status).eql(200);
            expect(body).eql('felix')
            done();