summaryrefslogtreecommitdiff
path: root/test/test_history_saving.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-02 22:57:29 +0100
committerw0rp <devw0rp@gmail.com>2017-04-02 22:57:29 +0100
commit927ee79026cffd50d888aa1edbe277d98d262a43 (patch)
tree5c4b0f19ce56038ae9aea53750efc93915d672e8 /test/test_history_saving.vader
parente7aa079982db45a3029ef0a0c435783164f2d43a (diff)
downloadale-927ee79026cffd50d888aa1edbe277d98d262a43.zip
Update the test suite so it uses the latest Docker image, and use Bourne shell for most tests, so weird shell issues are easier to catch.
Diffstat (limited to 'test/test_history_saving.vader')
-rw-r--r--test/test_history_saving.vader9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/test_history_saving.vader b/test/test_history_saving.vader
index 303a02fa..2f1044d7 100644
--- a/test/test_history_saving.vader
+++ b/test/test_history_saving.vader
@@ -1,4 +1,8 @@
Before:
+ " Temporarily set the shell to /bin/sh, if it isn't already set that way.
+ " This will make it so the test works when running it directly.
+ let g:current_shell = &shell
+ let &shell = '/bin/sh'
let g:history = []
let g:ale_buffer_info = {}
let g:ale_max_buffer_history_size = 20
@@ -16,6 +20,9 @@ Before:
\})
After:
+ " Reset the shell back to what it was before.
+ let &shell = g:current_shell
+ unlet g:current_shell
let g:ale_history_enabled = 1
let g:ale_history_log_output = 0
unlet g:history
@@ -37,7 +44,7 @@ Execute(History should be set when commands are run):
AssertEqual 1, len(g:history)
AssertEqual sort(['status', 'exit_code', 'job_id', 'command']), sort(keys(g:history[0]))
- AssertEqual ['/bin/bash', '-c', 'echo command history test'], g:history[0].command
+ AssertEqual ['/bin/sh', '-c', 'echo command history test'], g:history[0].command
AssertEqual 'finished', g:history[0].status
AssertEqual 0, g:history[0].exit_code
" The Job ID will change each time, but we can check the type.