Add minter test

This commit is contained in:
lash 2023-06-08 16:19:19 +01:00
parent 8d51154564
commit 0b62874631
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# standard imports
import unittest
import logging
# external imports
from chainlib.eth.tx import receipt
from chainlib.eth.block import block_latest
from chainlib.eth.block import block_by_number
from eth_minter.unittest import TestEthMinterInterface
from eth_minter.unittest.base import TestEthMinter
from ge_capped_token.unittest import TestCappedToken
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger()
class TestEthCappedMinter(TestEthMinter, TestCappedToken, TestEthMinterInterface):
def setUp(self):
super(TestEthCappedMinter, self).setUp()
if __name__ == '__main__':
unittest.main()