eth-erc20/python/tests/test_erc20_interface.py

15 lines
266 B
Python
Raw Permalink Normal View History

2023-03-21 21:08:17 +01:00
# import logging
2021-06-26 10:30:17 +02:00
import unittest
# local imports
2023-02-21 21:28:25 +01:00
from giftable_erc20_token.unittest import TestGiftableToken
2023-03-21 21:08:17 +01:00
from eth_erc20.unittest import TestInterface
2021-06-29 14:35:26 +02:00
2021-06-26 10:30:17 +02:00
2023-03-21 21:08:17 +01:00
class TestBasic(TestGiftableToken, TestInterface):
pass
2021-06-26 10:30:17 +02:00
if __name__ == '__main__':
unittest.main()