示例#1
0
 def test_connection(self):
     x = connect_sqs('AAKI', 'ASAK', http_client=Mock())
     self.assertTrue(x)
     self.assertTrue(x.connection)
示例#2
0
文件: test_aws.py 项目: jheld/kombu
 def test_connection(self):
     x = connect_sqs('AAKI', 'ASAK')
     self.assertTrue(x)
     self.assertTrue(x.connection)
示例#3
0
 def test_connection(self):
     x = connect_sqs("AAKI", "ASAK", http_client=Mock())
     assert x
     assert x.connection
示例#4
0
 def test_connection(self):
     x = connect_sqs('AAKI', 'ASAK', http_client=Mock())
     assert x
     assert x.sqs_connection
示例#5
0
 def test_connection(self):
     x = connect_sqs('AAKI', 'ASAK')
     self.assertTrue(x)
     self.assertTrue(x.connection)
示例#6
0
 def test_connection(self):
     x = connect_sqs('AAKI', 'ASAK', http_client=Mock())
     assert x
     assert x.connection