ge-capped-token/python/tests/test_erc20_interface.py
2023-05-30 17:42:53 +01:00

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()