summaryrefslogtreecommitdiffstats
path: root/tests/inputs/service_uppercase/test_service.py
blob: d10fccf7463e4a15a5caf917edcf35e4f66ea2e7 (plain)
1
2
3
4
5
6
7
8
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"