aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-04-11 22:07:00 +0200
committerGitHub <noreply@github.com>2018-04-11 22:07:00 +0200
commit87f4d2592c2ba164683b1f0f813cf9f029a0abfb (patch)
tree252717790553331e3d6c7245bb9d9be86ccdf101 /test/functional/helpers.lua
parentf96d99ad1118d79ae5c38bb5e2c4be1280caa3cc (diff)
downloadrneovim-87f4d2592c2ba164683b1f0f813cf9f029a0abfb.tar.gz
rneovim-87f4d2592c2ba164683b1f0f813cf9f029a0abfb.tar.bz2
rneovim-87f4d2592c2ba164683b1f0f813cf9f029a0abfb.zip
test/util: expect_err() (#8257)
other cleanup, ref #8245
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index 84ba6b6853..bf11042dd6 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -14,6 +14,7 @@ local check_cores = global_helpers.check_cores
local check_logs = global_helpers.check_logs
local neq = global_helpers.neq
local eq = global_helpers.eq
+local expect_err = global_helpers.expect_err
local ok = global_helpers.ok
local map = global_helpers.map
local matches = global_helpers.matches
@@ -737,6 +738,7 @@ local module = {
exc_exec = exc_exec,
expect = expect,
expect_any = expect_any,
+ expect_err = expect_err,
expect_msg_seq = expect_msg_seq,
expect_twostreams = expect_twostreams,
feed = feed,