浏览代码

change untested methods to TODOs

Michelle Bu 12 年之前
父节点
当前提交
19ed82f2ea
共有 1 个文件被更改,包括 11 次插入53 次删除
  1. 11 53
      test/connectionmanager.js

+ 11 - 53
test/connectionmanager.js

@@ -4,68 +4,26 @@ describe('ConnectionManager', function() {
 
   it('inherits from EventEmitter');
 
-  it('initialize', function() {
+  it('_setupDataChannel');
 
-  });
+  it('_makeOffer');
 
-  it('_startPeerConnection', function() {
+  it('_makeAnswer');
 
-  });
+  it('_cleanup');
 
-  it('_processQueue', function() {
+  it('_attachConnectionListeners');
 
-  });
+  it('handleSDP');
 
-  it('_setupIce', function() {
+  it('handleCandidate');
 
-  });
+  it('handleLeave');
 
-  it('_setupNegotiationHandler', function() {
+  it('close');
 
-  });
+  it('connect');
 
-  it('_setupDataChannel', function() {
-
-  });
-
-  it('_makeOffer', function() {
-
-  });
-
-  it('_makeAnswer', function() {
-
-  });
-
-  it('_cleanup', function() {
-
-  });
-
-  it('_attachConnectionListeners', function() {
-
-  });
-
-  it('handleSDP', function() {
-
-  });
-
-  it('handleCandidate', function() {
-
-  });
-
-  it('handleLeave', function() {
-
-  });
-
-  it('close', function() {
-
-  });
-
-  it('connect', function() {
-
-  });
-
-  it('update', function() {
-
-  });
+  it('update');
 
 });