mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-06 12:27:45 +00:00
25 lines
704 B
Python
25 lines
704 B
Python
from connexion.decorators.parameter import get_function_arguments
|
|
|
|
import decorator
|
|
|
|
|
|
@decorator.decorator
|
|
def the_decorator(f, *args, **kwargs):
|
|
return f(*args, **kwargs)
|
|
|
|
|
|
def stub_function(foo, bar):
|
|
"""stub function to be used in tests."""
|
|
pass
|
|
|
|
|
|
def test_get_proper_argument_list():
|
|
"""Test get the proper argument list of the decorated function."""
|
|
|
|
assert len(get_function_arguments(stub_function)) == 2
|
|
assert get_function_arguments(stub_function) == ['foo', 'bar']
|
|
|
|
decorated_stub_function = the_decorator(stub_function)
|
|
assert len(get_function_arguments(decorated_stub_function)) == 2
|
|
assert get_function_arguments(decorated_stub_function) == ['foo', 'bar']
|