コード例 #1
0
 def test_remove(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.remove(req)
     val = RequestCollection.find(req)
     self.assertEqual(val, None)
コード例 #2
0
 def test_remove(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.remove(req)
     val = RequestCollection.find(req)
     self.assertEqual(val, None)