lua: move test helper function, map and filter, to vim.shared module

This commit is contained in:
Hirokazu Hata
2020-02-18 17:41:29 +09:00
parent a2efc9cf8b
commit e2ed8053bf
8 changed files with 61 additions and 25 deletions

View File

@@ -15,9 +15,9 @@ local check_cores = global_helpers.check_cores
local check_logs = global_helpers.check_logs
local dedent = global_helpers.dedent
local eq = global_helpers.eq
local filter = global_helpers.filter
local filter = global_helpers.tbl_filter
local is_os = global_helpers.is_os
local map = global_helpers.map
local map = global_helpers.tbl_map
local ok = global_helpers.ok
local sleep = global_helpers.sleep
local tbl_contains = global_helpers.tbl_contains