aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/023_edit_arguments_spec.lua
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-04-10 22:21:06 +0300
committerZyX <kp-pav@yandex.ru>2017-04-10 22:21:06 +0300
commitab4d13e2fa09db538756cc5cfb36f81681e5ff7a (patch)
treeb8bded415655f09bc323a23d21ed8d7e74b1c8da /test/functional/legacy/023_edit_arguments_spec.lua
parenta40a969e9a4776f1e274dcf0e59c8f1ec1770ca0 (diff)
parent9aface8c4d1edd25d4fed3e099e3c2c02b0a282a (diff)
downloadrneovim-ab4d13e2fa09db538756cc5cfb36f81681e5ff7a.tar.gz
rneovim-ab4d13e2fa09db538756cc5cfb36f81681e5ff7a.tar.bz2
rneovim-ab4d13e2fa09db538756cc5cfb36f81681e5ff7a.zip
Merge branch 'master' into luaviml'/lua
Diffstat (limited to 'test/functional/legacy/023_edit_arguments_spec.lua')
-rw-r--r--test/functional/legacy/023_edit_arguments_spec.lua34
1 files changed, 18 insertions, 16 deletions
diff --git a/test/functional/legacy/023_edit_arguments_spec.lua b/test/functional/legacy/023_edit_arguments_spec.lua
index 95ab983d24..e705397a2b 100644
--- a/test/functional/legacy/023_edit_arguments_spec.lua
+++ b/test/functional/legacy/023_edit_arguments_spec.lua
@@ -2,7 +2,8 @@
local helpers = require('test.functional.helpers')(after_each)
local clear, insert = helpers.clear, helpers.insert
-local execute, expect = helpers.execute, helpers.expect
+local command, expect = helpers.command, helpers.expect
+local wait = helpers.wait
describe(':edit', function()
setup(clear)
@@ -12,31 +13,32 @@ describe(':edit', function()
The result should be in Xfile1: "fooPIPEbar", in Xfile2: "fooSLASHbar"
foo|bar
foo/bar]])
+ wait()
-- Prepare some test files
- execute('$-1w! Xfile1')
- execute('$w! Xfile2')
- execute('w! Xfile0')
+ command('$-1w! Xfile1')
+ command('$w! Xfile2')
+ command('w! Xfile0')
-- Open Xfile using '+' range
- execute('edit +1 Xfile1')
- execute('s/|/PIPE/')
- execute('yank A')
- execute('w! Xfile1')
+ command('edit +1 Xfile1')
+ command('s/|/PIPE/')
+ command('yank A')
+ command('w! Xfile1')
-- Open Xfile2 using '|' range
- execute('edit Xfile2|1')
- execute("s/\\//SLASH/")
- execute('yank A')
- execute('w! Xfile2')
+ command('edit Xfile2|1')
+ command("s/\\//SLASH/")
+ command('yank A')
+ command('w! Xfile2')
-- Clean first buffer and put @a
- execute('bf')
- execute('%d')
- execute('0put a')
+ command('bf')
+ command('%d')
+ command('0put a')
-- Remove empty line
- execute('$d')
+ command('$d')
-- The buffer should now contain
expect([[