14 lines
281 B
Python
14 lines
281 B
Python
|
# local imports
|
||
|
from cic_eth.check.signer import health
|
||
|
|
||
|
|
||
|
def test_check_signer(
|
||
|
default_chain_spec,
|
||
|
config,
|
||
|
eth_signer,
|
||
|
eth_rpc,
|
||
|
):
|
||
|
|
||
|
config.add(str(default_chain_spec), 'CIC_CHAIN_SPEC', exists_ok=True)
|
||
|
assert health(config=config)
|