aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/006_argument_list_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-09 22:51:59 +0200
committerGitHub <noreply@github.com>2017-04-09 22:51:59 +0200
commitd7fb7de70aee3dff48abc61986818dee86afed07 (patch)
treea9263b8deb57161f2b5315117371af026759c79b /test/functional/legacy/006_argument_list_spec.lua
parentdbdd69e418a3baa4750abc25fae7516a36776e75 (diff)
parentdbe67868b53774443521129ef30d74346592e3bb (diff)
downloadrneovim-d7fb7de70aee3dff48abc61986818dee86afed07.tar.gz
rneovim-d7fb7de70aee3dff48abc61986818dee86afed07.tar.bz2
rneovim-d7fb7de70aee3dff48abc61986818dee86afed07.zip
Merge #6481 from ZyX-I/rename-execute
Rename execute() function to feed_command()
Diffstat (limited to 'test/functional/legacy/006_argument_list_spec.lua')
-rw-r--r--test/functional/legacy/006_argument_list_spec.lua38
1 files changed, 21 insertions, 17 deletions
diff --git a/test/functional/legacy/006_argument_list_spec.lua b/test/functional/legacy/006_argument_list_spec.lua
index 764854314f..dac58df8a5 100644
--- a/test/functional/legacy/006_argument_list_spec.lua
+++ b/test/functional/legacy/006_argument_list_spec.lua
@@ -2,8 +2,9 @@
local helpers = require('test.functional.helpers')(after_each)
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
-local execute, dedent, eq = helpers.execute, helpers.dedent, helpers.eq
+local command, dedent, eq = helpers.command, helpers.dedent, helpers.eq
local curbuf_contents = helpers.curbuf_contents
+local wait = helpers.wait
describe('argument list', function()
setup(clear)
@@ -16,10 +17,11 @@ describe('argument list', function()
this is a test
this is a test
end of test file Xxx]])
+ wait()
+
+ command('au BufReadPost Xxx2 next Xxx2 Xxx1')
+ command('/^start of')
- execute('au BufReadPost Xxx2 next Xxx2 Xxx1')
- execute('/^start of')
-
-- Write test file Xxx1
feed('A1<Esc>:.,/end of/w! Xxx1<cr>')
@@ -28,29 +30,31 @@ describe('argument list', function()
-- Write test file Xxx3
feed('$r3:.,/end of/w! Xxx3<cr>')
+ wait()
-- Redefine arglist; go to Xxx1
- execute('next! Xxx1 Xxx2 Xxx3')
-
+ command('next! Xxx1 Xxx2 Xxx3')
+
-- Open window for all args
- execute('all')
-
+ command('all')
+
-- Write contents of Xxx1
- execute('%yank A')
+ command('%yank A')
-- Append contents of last window (Xxx1)
feed('')
- execute('%yank A')
-
+ wait()
+ command('%yank A')
+
-- should now be in Xxx2
- execute('rew')
-
+ command('rew')
+
-- Append contents of Xxx2
- execute('%yank A')
+ command('%yank A')
- execute('%d')
- execute('0put=@a')
- execute('$d')
+ command('%d')
+ command('0put=@a')
+ command('$d')
eq(dedent([[
start of test file Xxx1