ge-capped-token/python/tests/test_erc20_interface.py

15 lines
257 B
Python
Raw Normal View History

2023-05-30 18:42:53 +02:00
# 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()