Exemplo n.º 1
0
 def test_sasl_authentication_iterable(self):
     authentication = SASL()
     self.conn = Connection(authentication=(authentication, ))
     assert self.conn.authentication == (authentication, )
Exemplo n.º 2
0
 def test_sasl_authentication(self):
     authentication = SASL()
     self.conn = Connection(authentication=authentication)
     assert self.conn.authentication == (authentication, )