Add erc173 test

This commit is contained in:
lash 2023-06-09 11:01:14 +01:00
parent c7f88b71ce
commit 35c6b26677
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 22 additions and 0 deletions

View File

@ -3,3 +3,4 @@ py-evm==0.3.0a20
pytest==6.0.1
cic-contracts~=0.3.8
eth-interface~=0.1.2
eth-owned~=0.1.2

View File

@ -0,0 +1,21 @@
# standard imports
import unittest
import logging
# external imports
from cic_contracts import erc165_for
from eth_owned.unittest import TestERC173
# local imports
from ge_capped_token.unittest import TestCappedToken
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger()
class TestEthCappedERC173(TestCappedToken, TestERC173):
pass
if __name__ == '__main__':
unittest.main()