summaryrefslogtreecommitdiff
path: root/cliapp/runcmd_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'cliapp/runcmd_tests.py')
-rw-r--r--cliapp/runcmd_tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cliapp/runcmd_tests.py b/cliapp/runcmd_tests.py
index 8f8a8a9..44991c4 100644
--- a/cliapp/runcmd_tests.py
+++ b/cliapp/runcmd_tests.py
@@ -130,3 +130,6 @@ class ShellQuoteTests(unittest.TestCase):
def test_returns_empty_string_for_empty_string(self):
self.assertEqual(cliapp.shell_quote(''), '')
+ def test_returns_same_string_when_safe(self):
+ self.assertEqual(cliapp.shell_quote('abc123'), 'abc123')
+