diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-23 21:00:32 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-23 21:00:32 -0400 |
commit | 99ec5265e2e80ecca1252670657c50693da5254a (patch) | |
tree | d06e75c15a981ee23e5a95f8c2bbbe694ea5c08c /tests/scripts | |
parent | 5b8c80921a720122fc4e7f723ea712c640125412 (diff) | |
download | cmd2-git-99ec5265e2e80ecca1252670657c50693da5254a.tar.gz |
Fixed issue where run_pyscript failed if the script's filename had a space
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/raises_exception.py | 6 | ||||
-rw-r--r-- | tests/scripts/recursive.py | 8 |
2 files changed, 0 insertions, 14 deletions
diff --git a/tests/scripts/raises_exception.py b/tests/scripts/raises_exception.py deleted file mode 100644 index 738edaf2..00000000 --- a/tests/scripts/raises_exception.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -""" -Example demonstrating what happens when a Python script raises an exception -""" -1 + 'blue' diff --git a/tests/scripts/recursive.py b/tests/scripts/recursive.py deleted file mode 100644 index 7d37e540..00000000 --- a/tests/scripts/recursive.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -# flake8: noqa F821 -""" -Example demonstrating that running a Python script recursively inside another Python script isn't allowed -""" -app.cmd_echo = True -app('run_pyscript ../script.py') |