コード例 #1
0
ファイル: test_connection.py プロジェクト: hakuokada/kombu
 def test_client(self):
     sqs = Mock(name='sqs')
     x = AsyncConnection(sqs)
     assert x._httpclient is http.get_client()
     client = Mock(name='client')
     y = AsyncConnection(sqs, http_client=client)
     assert y._httpclient is client
コード例 #2
0
ファイル: test_connection.py プロジェクト: hakuokada/kombu
 def test_get_http_connection(self):
     sqs = Mock(name='sqs')
     x = AsyncConnection(sqs)
     assert isinstance(
         x.get_http_connection(),
         AsyncHTTPSConnection,
     )
     conn = x.get_http_connection()
     assert conn.http_client is x._httpclient
コード例 #3
0
ファイル: test_connection.py プロジェクト: Scalr/kombu
 def test_get_http_connection(self):
     sqs = Mock(name='sqs')
     x = AsyncConnection(sqs)
     assert isinstance(
         x.get_http_connection(),
         AsyncHTTPSConnection,
     )
     conn = x.get_http_connection()
     assert conn.http_client is x._httpclient