aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/system_spec.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-01-25 14:09:36 -0500
committerGitHub <noreply@github.com>2018-01-25 14:09:36 -0500
commit83880cced34c1425cf225c435c7ed05eac6fd44c (patch)
tree8fa470dc21c9264fcee9b06d8f07305ac5fccf53 /test/functional/eval/system_spec.lua
parent8b1f7d8774b235ae4f0dc0fa64d58e3cad9f8283 (diff)
parent3ff92ba1ee54a9400aac143f4d98d356dc6a8321 (diff)
downloadrneovim-83880cced34c1425cf225c435c7ed05eac6fd44c.tar.gz
rneovim-83880cced34c1425cf225c435c7ed05eac6fd44c.tar.bz2
rneovim-83880cced34c1425cf225c435c7ed05eac6fd44c.zip
Merge pull request #6558 from jamessan/tv_as_string-fix
eval: save_tv_as_string: Correctly handle an empty string
Diffstat (limited to 'test/functional/eval/system_spec.lua')
-rw-r--r--test/functional/eval/system_spec.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/eval/system_spec.lua b/test/functional/eval/system_spec.lua
index 66d569416e..77e7424452 100644
--- a/test/functional/eval/system_spec.lua
+++ b/test/functional/eval/system_spec.lua
@@ -258,6 +258,9 @@ describe('system()', function()
end
eq(2, eval("1+1")) -- Still alive?
end)
+ it('works with an empty string', function()
+ eq("test\n", eval('system("echo test", "")'))
+ end)
end)
describe('passing a lot of input', function()