8 lines
213 B
Python
8 lines
213 B
Python
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"
|