An empty project, with respect to functionality, but one configured with a test framework, linters, CI integration, etc. https://app.asana.com/0/836857747873847/839549782781239/f
9 lines
249 B
Python
9 lines
249 B
Python
"""Tests of 0x.order_utils.signature_utils.*."""
|
|
|
|
from zero_ex.order_utils.signature_utils import ec_sign_order_hash
|
|
|
|
|
|
def test_ec_sign_order_hash():
|
|
"""Test the signing of order hashes."""
|
|
assert ec_sign_order_hash() == "stub return value"
|