15 lines
257 B
Python
15 lines
257 B
Python
|
# import logging
|
||
|
import unittest
|
||
|
|
||
|
# local imports
|
||
|
from ge_capped_token.unittest import TestCappedToken
|
||
|
from eth_erc20.unittest import TestInterface
|
||
|
|
||
|
|
||
|
class TestBasic(TestCappedToken, TestInterface):
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|