def test_cli_spend(account_path): # generate a new address recipient_address = Account.generate().get_address() # call the cli call_aecli('account', 'spend', account_path, recipient_address, "90", '--password', 'aeternity_bc') # test that the recipient account has the requested amount print(f"recipient address is {recipient_address}") recipient_account = EPOCH_CLI.get_account_by_pubkey(pubkey=recipient_address) print(f"recipient address {recipient_address}, balance {recipient_account.balance}") assert recipient_account.balance == 90
def test_epoch_spend(): account = Account.generate().get_address() EPOCH_CLI.spend(ACCOUNT, account, 100) account = EPOCH_CLI.get_account_by_pubkey(pubkey=account) balance = account.balance assert balance > 0
def test_api_get_account(): account = EPOCH_CLI.get_account_by_pubkey(pubkey=PUBLIC_KEY) assert account.balance > 0