def test_connection(self): x = connect_sqs('AAKI', 'ASAK', http_client=Mock()) self.assertTrue(x) self.assertTrue(x.connection)
def test_connection(self): x = connect_sqs('AAKI', 'ASAK') self.assertTrue(x) self.assertTrue(x.connection)
def test_connection(self): x = connect_sqs("AAKI", "ASAK", http_client=Mock()) assert x assert x.connection
def test_connection(self): x = connect_sqs('AAKI', 'ASAK', http_client=Mock()) assert x assert x.sqs_connection
def test_connection(self): x = connect_sqs('AAKI', 'ASAK', http_client=Mock()) assert x assert x.connection