diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-09-11 05:06:58 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-09-11 05:06:58 -0400 |
commit | 1da3398095b81a1f579a2d8d19864fdad8de0bde (patch) | |
tree | 53b6764cd02f55d11ff6f6f56a91d358b367ea7d /test/unit/os/shell_spec.lua | |
parent | 7577c31ed08b0f4e1426f9e6a1da7d5fd55440bb (diff) | |
parent | 99a9161bace8200aa611f6feefcc2ac3eda93251 (diff) | |
download | rneovim-1da3398095b81a1f579a2d8d19864fdad8de0bde.tar.gz rneovim-1da3398095b81a1f579a2d8d19864fdad8de0bde.tar.bz2 rneovim-1da3398095b81a1f579a2d8d19864fdad8de0bde.zip |
Merge pull request #1144 from justinmk/fixtests
fix unittest issues with busted 2.x
Diffstat (limited to 'test/unit/os/shell_spec.lua')
-rw-r--r-- | test/unit/os/shell_spec.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/unit/os/shell_spec.lua b/test/unit/os/shell_spec.lua index 870034aad9..03aafe7e3c 100644 --- a/test/unit/os/shell_spec.lua +++ b/test/unit/os/shell_spec.lua @@ -24,11 +24,7 @@ local NULL = ffi.cast('void *', 0) describe('shell functions', function() setup(function() - -- the logging functions are complain if I don't do this - shell.init_homedir() - shell.event_init() - -- os_system() can't work when the p_sh and p_shcf variables are unset shell.p_sh = to_cstr('/bin/bash') shell.p_shcf = to_cstr('-c') |