Skip to content

Commit fde7aea

Browse files
authored
Test self delegate vesting shares (#23)
1 parent 76cf32b commit fde7aea

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_exceptions.py

+5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ def test_negative_delegate_vesting_shares(viz):
4444
viz.delegate_vesting_shares(delegator='alice', delegatee='bob', amount=-10)
4545

4646

47+
def test_self_delegate_vesting_shares(viz, default_account):
48+
with pytest.raises(UnhandledRPCError, match='delegator != delegatee: You cannot delegate SHARES to yourself'):
49+
viz.delegate_vesting_shares(delegator=default_account, delegatee=default_account, amount=10)
50+
51+
4752
def test_too_much_beneficiaries(viz, default_account):
4853
beneficiaries = [{"account": default_account, "weight": 50}] * 256
4954

0 commit comments

Comments
 (0)