summaryrefslogtreecommitdiffstats
path: root/test/features/steps/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/steps/utils.py')
-rw-r--r--test/features/steps/utils.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/features/steps/utils.py b/test/features/steps/utils.py
new file mode 100644
index 0000000..1ae63d2
--- /dev/null
+++ b/test/features/steps/utils.py
@@ -0,0 +1,12 @@
+import shlex
+
+
+def parse_cli_args_to_dict(cli_args: str):
+ args_dict = {}
+ for arg in shlex.split(cli_args):
+ if '=' in arg:
+ key, value = arg.split('=')
+ args_dict[key] = value
+ else:
+ args_dict[arg] = None
+ return args_dict