eth-erc20/python/tests/test_erc20_interface.py
2023-03-21 20:08:17 +00:00

15 lines
266 B
Python

# import logging
import unittest
# local imports
from giftable_erc20_token.unittest import TestGiftableToken
from eth_erc20.unittest import TestInterface
class TestBasic(TestGiftableToken, TestInterface):
pass
if __name__ == '__main__':
unittest.main()