Add burner test
This commit is contained in:
parent
0b62874631
commit
a2132e11c1
24
python/tests/test_cic_burner.py
Normal file
24
python/tests/test_cic_burner.py
Normal 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_burner.unittest import TestEthBurnerInterface
|
||||||
|
from eth_burner.unittest.base import TestEthBurner
|
||||||
|
from ge_capped_token.unittest import TestCappedToken
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
logg = logging.getLogger()
|
||||||
|
|
||||||
|
|
||||||
|
class TestEthCappedBurner(TestEthBurner, TestCappedToken, TestEthBurnerInterface):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestEthCappedBurner, self).setUp()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in New Issue
Block a user