Files
python-betterproto/tests/inputs/service_uppercase/test_service.py

9 lines
213 B
Python

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