1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
local helpers = require('test.functional.helpers')
local Screen = require('test.functional.ui.screen')
local clear, wait, nvim = helpers.clear, helpers.wait, helpers.nvim
local nvim_dir = helpers.nvim_dir
local execute, source = helpers.execute, helpers.source
local eq, neq = helpers.eq, helpers.neq
describe(':terminal', function()
local screen
before_each(function()
clear()
screen = Screen.new(50, 7)
screen:attach(false)
nvim('set_option', 'shell', nvim_dir..'/shell-test')
nvim('set_option', 'shellcmdflag', 'EXE')
end)
it('with no argument, acts like termopen()', function()
execute('terminal')
wait()
screen:expect([[
ready $ |
[Program exited, press any key to close] |
|
|
|
|
-- TERMINAL -- |
]])
end)
it('executes a given command through the shell', function()
execute('terminal echo hi')
wait()
screen:expect([[
ready $ echo hi |
|
[Program exited, press any key to close] |
|
|
|
-- TERMINAL -- |
]])
end)
it('allows quotes and slashes', function()
execute([[terminal echo 'hello' \ "world"]])
wait()
screen:expect([[
ready $ echo 'hello' \ "world" |
|
[Program exited, press any key to close] |
|
|
|
-- TERMINAL -- |
]])
end)
end)
|