A new approach of getting arguments

This commit is contained in:
Dave Halter
2019-07-28 17:31:17 +02:00
parent 6a480780f8
commit b4f2d82867
4 changed files with 125 additions and 77 deletions

View File

@@ -94,6 +94,8 @@ def test_tree_signature(Script, environment, code, expected):
@pytest.mark.parametrize(
'combination, expected', [
('full_redirect(simple)', 'b, *, c'),
('combined_redirect(simple, simple2)', 'a, b, /, *, x'),
('combined_redirect(simple, simple3)', 'a, b, /, *, a, x: int'),
('combined_redirect(simple2, simple)', 'x, /, *, a, b, c'),