From 7617a9316ed9e541819b5a1700a07aa4d9637583 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 1 Dec 2021 20:48:29 +0100 Subject: [PATCH] extend API unit tests --- test/python/cli/test_cli.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/python/cli/test_cli.py b/test/python/cli/test_cli.py index f4878b61..dbe17083 100644 --- a/test/python/cli/test_cli.py +++ b/test/python/cli/test_cli.py @@ -93,9 +93,12 @@ class TestCli: assert func.called == 1 -@pytest.mark.parametrize("params", [('search', '--query', 'new'), - ('reverse', '--lat', '0', '--lon', '0'), - ('lookup', '--id', 'N1'), +@pytest.mark.parametrize("params", [('search', '--query', 'new', '--polygon-output', 'svg', '--polygon-threshold', '0.1'), + ('search', '--city', 'Berlin', '--format', 'xml', '--lang', 'de'), + ('reverse', '--lat', '0', '--lon', '0', + '--polygon-output', 'svg', '--polygon-threshold', '0.1', '--format', 'json', '--lang', 'en'), + ('lookup', '--id', 'N1', + '--polygon-output', 'svg', '--polygon-threshold', '0.1', '--format', 'json', '--lang', 'en'), ('details', '--node', '1'), ('details', '--way', '1'), ('details', '--relation', '1'), -- 2.39.5