Test sender authentication v2
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s

This commit is contained in:
Jon Michael Aanes 2025-05-01 16:23:27 +02:00
parent 86fa09e6fd
commit f5d648c595

View File

@ -3,7 +3,11 @@ from pbc_client.pbc_types import Address
def test_sender_authentication():
sender_authentication = SenderAuthentication('aa')
assert sender_authentication.sender_address() == Address.from_string('00e72e44eab933faaf1fd4ce94bb57e08bff98a1ed')
assert str(sender_authentication.sender_address()) == '00e72e44eab933faaf1fd4ce94bb57e08bff98a1ed'
def test_sender_authentication_2():
sender_authentication = SenderAuthentication('2')
assert str(sender_authentication.sender_address()) =='00b2e734b5d8da089318d0d2b076c19f59c450855a'
def test_sign():
sender_authentication = SenderAuthentication('01')