예제 #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
파일: test_aws.py 프로젝트: c-nichols/kombu
 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