mirror of
https://github.com/grassrootseconomics/erc20-pool.git
synced 2026-04-27 05:07:14 +02:00
Add interface test
This commit is contained in:
@@ -12,15 +12,11 @@ from giftable_erc20_token import GiftableToken
|
||||
# local imports
|
||||
from erc20_pool.unittest import TestERC20Pool
|
||||
from erc20_pool import Pool
|
||||
#from evm_tokenvote.unittest.base import hash_of_foo
|
||||
#from evm_tokenvote import Voter
|
||||
#from evm_tokenvote import ProposalState
|
||||
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logg = logging.getLogger()
|
||||
|
||||
class TestPoolBase(TestERC20Pool):
|
||||
class TestPoolFee(TestERC20Pool):
|
||||
|
||||
def test_swap_fee(self):
|
||||
nonce_oracle = RPCNonceOracle(self.accounts[0], conn=self.conn)
|
||||
|
||||
32
python/tests/test_interface.py
Normal file
32
python/tests/test_interface.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# standard imports
|
||||
import unittest
|
||||
import logging
|
||||
import os
|
||||
from chainlib.eth.nonce import RPCNonceOracle
|
||||
from chainlib.eth.tx import receipt
|
||||
from chainlib.eth.block import block_latest
|
||||
from hexathon import same as same_hex
|
||||
from eth_erc20 import ERC20
|
||||
from giftable_erc20_token import GiftableToken
|
||||
from eth_interface.unittest import TestERC165
|
||||
|
||||
# local imports
|
||||
from erc20_pool.unittest import TestERC20Pool
|
||||
from erc20_pool import Pool
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logg = logging.getLogger()
|
||||
|
||||
TestERC165.add_interface_check('9493f8b2')
|
||||
TestERC165.add_interface_check('0d7491f8')
|
||||
|
||||
class TestPoolInterface(TestERC20Pool, TestERC165):
|
||||
|
||||
def test_interface(self):
|
||||
self.address = self.pool_address
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
||||
Reference in New Issue
Block a user