1
0
Fork 0
python-aristaproto/tests/inputs/service_uppercase/test_service.py

9 lines
213 B
Python
Raw Normal View History

import inspect
from tests.output_aristaproto.service_uppercase import TestStub
def test_parameters():
sig = inspect.signature(TestStub.do_thing)
assert len(sig.parameters) == 5, "Expected 5 parameters"