mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00
test: remove use of require('test.helpers')
The test.functional.helpers and test.unit.helpers modules now include all of the public functions from test.helpers, so there is no need to separately require('test.helpers').
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
|
|
||||||
local bufmeths = helpers.bufmeths
|
local bufmeths = helpers.bufmeths
|
||||||
local clear = helpers.clear
|
local clear = helpers.clear
|
||||||
@@ -12,8 +11,8 @@ local funcs = helpers.funcs
|
|||||||
local meths = helpers.meths
|
local meths = helpers.meths
|
||||||
local source = helpers.source
|
local source = helpers.source
|
||||||
|
|
||||||
local shallowcopy = global_helpers.shallowcopy
|
local shallowcopy = helpers.shallowcopy
|
||||||
local sleep = global_helpers.sleep
|
local sleep = helpers.sleep
|
||||||
|
|
||||||
describe('nvim_get_keymap', function()
|
describe('nvim_get_keymap', function()
|
||||||
before_each(clear)
|
before_each(clear)
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local Screen = require('test.functional.ui.screen')
|
local Screen = require('test.functional.ui.screen')
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
|
|
||||||
local NIL = helpers.NIL
|
local NIL = helpers.NIL
|
||||||
local clear, nvim, eq, neq = helpers.clear, helpers.nvim, helpers.eq, helpers.neq
|
local clear, nvim, eq, neq = helpers.clear, helpers.nvim, helpers.eq, helpers.neq
|
||||||
@@ -16,10 +15,10 @@ local request = helpers.request
|
|||||||
local source = helpers.source
|
local source = helpers.source
|
||||||
local next_msg = helpers.next_msg
|
local next_msg = helpers.next_msg
|
||||||
|
|
||||||
local expect_err = global_helpers.expect_err
|
local expect_err = helpers.expect_err
|
||||||
local format_string = global_helpers.format_string
|
local format_string = helpers.format_string
|
||||||
local intchar2lua = global_helpers.intchar2lua
|
local intchar2lua = helpers.intchar2lua
|
||||||
local mergedicts_copy = global_helpers.mergedicts_copy
|
local mergedicts_copy = helpers.mergedicts_copy
|
||||||
|
|
||||||
describe('API', function()
|
describe('API', function()
|
||||||
before_each(clear)
|
before_each(clear)
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
local global_helpers = require('test.helpers')
|
|
||||||
local uname = global_helpers.uname
|
|
||||||
|
|
||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
|
local uname = helpers.uname
|
||||||
local clear, eq, eval, next_msg, ok, source = helpers.clear, helpers.eq,
|
local clear, eq, eval, next_msg, ok, source = helpers.clear, helpers.eq,
|
||||||
helpers.eval, helpers.next_msg, helpers.ok, helpers.source
|
helpers.eval, helpers.next_msg, helpers.ok, helpers.source
|
||||||
local command, funcs, meths = helpers.command, helpers.funcs, helpers.meths
|
local command, funcs, meths = helpers.command, helpers.funcs, helpers.meths
|
||||||
|
@@ -59,7 +59,7 @@ describe(':let', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it("multibyte env var to child process #8398 #9267", function()
|
it("multibyte env var to child process #8398 #9267", function()
|
||||||
if (not helpers.iswin()) and require('test.helpers').isCI() then
|
if (not helpers.iswin()) and helpers.isCI() then
|
||||||
-- Fails on non-Windows CI. Buffering/timing issue?
|
-- Fails on non-Windows CI. Buffering/timing issue?
|
||||||
pending('fails on unix CI', function() end)
|
pending('fails on unix CI', function() end)
|
||||||
end
|
end
|
||||||
|
@@ -16,7 +16,6 @@ local eq = global_helpers.eq
|
|||||||
local ok = global_helpers.ok
|
local ok = global_helpers.ok
|
||||||
local sleep = global_helpers.sleep
|
local sleep = global_helpers.sleep
|
||||||
local table_contains = global_helpers.table_contains
|
local table_contains = global_helpers.table_contains
|
||||||
local table_flatten = global_helpers.table_flatten
|
|
||||||
local write_file = global_helpers.write_file
|
local write_file = global_helpers.write_file
|
||||||
|
|
||||||
local start_dir = lfs.currentdir()
|
local start_dir = lfs.currentdir()
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
|
|
||||||
local Screen = require('test.functional.ui.screen')
|
local Screen = require('test.functional.ui.screen')
|
||||||
|
|
||||||
@@ -16,7 +15,7 @@ local neq = helpers.neq
|
|||||||
local mkdir = helpers.mkdir
|
local mkdir = helpers.mkdir
|
||||||
local rmdir = helpers.rmdir
|
local rmdir = helpers.rmdir
|
||||||
local alter_slashes = helpers.alter_slashes
|
local alter_slashes = helpers.alter_slashes
|
||||||
local table_contains = global_helpers.table_contains
|
local table_contains = helpers.table_contains
|
||||||
|
|
||||||
describe('startup defaults', function()
|
describe('startup defaults', function()
|
||||||
describe(':filetype', function()
|
describe(':filetype', function()
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
-- TUI acceptance tests.
|
-- TUI acceptance tests.
|
||||||
-- Uses :terminal as a way to send keys and assert screen state.
|
-- Uses :terminal as a way to send keys and assert screen state.
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
local uname = global_helpers.uname
|
|
||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
|
local uname = helpers.uname
|
||||||
local thelpers = require('test.functional.terminal.helpers')
|
local thelpers = require('test.functional.terminal.helpers')
|
||||||
local Screen = require('test.functional.ui.screen')
|
local Screen = require('test.functional.ui.screen')
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
local global_helpers = require('test.helpers')
|
|
||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local Screen = require('test.functional.ui.screen')
|
local Screen = require('test.functional.ui.screen')
|
||||||
local clear = helpers.clear
|
local clear = helpers.clear
|
||||||
local command = helpers.command
|
local command = helpers.command
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
local shallowcopy = global_helpers.shallowcopy
|
local shallowcopy = helpers.shallowcopy
|
||||||
|
|
||||||
describe('ui receives option updates', function()
|
describe('ui receives option updates', function()
|
||||||
local screen
|
local screen
|
||||||
|
@@ -71,11 +71,10 @@
|
|||||||
-- To help write screen tests, see Screen:snapshot_util().
|
-- To help write screen tests, see Screen:snapshot_util().
|
||||||
-- To debug screen tests, see Screen:redraw_debug().
|
-- To debug screen tests, see Screen:redraw_debug().
|
||||||
|
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
local deepcopy = global_helpers.deepcopy
|
|
||||||
local shallowcopy = global_helpers.shallowcopy
|
|
||||||
local concat_tables = global_helpers.concat_tables
|
|
||||||
local helpers = require('test.functional.helpers')(nil)
|
local helpers = require('test.functional.helpers')(nil)
|
||||||
|
local deepcopy = helpers.deepcopy
|
||||||
|
local shallowcopy = helpers.shallowcopy
|
||||||
|
local concat_tables = helpers.concat_tables
|
||||||
local request, run_session = helpers.request, helpers.run_session
|
local request, run_session = helpers.request, helpers.run_session
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
local dedent = helpers.dedent
|
local dedent = helpers.dedent
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
local global_helpers = require('test.helpers')
|
|
||||||
local shallowcopy = global_helpers.shallowcopy
|
|
||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local Screen = require('test.functional.ui.screen')
|
local Screen = require('test.functional.ui.screen')
|
||||||
|
local shallowcopy = helpers.shallowcopy
|
||||||
local clear, feed, command = helpers.clear, helpers.feed, helpers.command
|
local clear, feed, command = helpers.clear, helpers.feed, helpers.command
|
||||||
local iswin = helpers.iswin
|
local iswin = helpers.iswin
|
||||||
local funcs = helpers.funcs
|
local funcs = helpers.funcs
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
local bit = require('bit')
|
local bit = require('bit')
|
||||||
local helpers = require('test.unit.helpers')(after_each)
|
local helpers = require('test.unit.helpers')(after_each)
|
||||||
local eval_helpers = require('test.unit.eval.helpers')
|
local eval_helpers = require('test.unit.eval.helpers')
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
|
|
||||||
local itp = helpers.gen_itp(it)
|
local itp = helpers.gen_itp(it)
|
||||||
|
|
||||||
@@ -14,6 +13,8 @@ local NULL = helpers.NULL
|
|||||||
local cimport = helpers.cimport
|
local cimport = helpers.cimport
|
||||||
local to_cstr = helpers.to_cstr
|
local to_cstr = helpers.to_cstr
|
||||||
local alloc_log_new = helpers.alloc_log_new
|
local alloc_log_new = helpers.alloc_log_new
|
||||||
|
local concat_tables = helpers.concat_tables
|
||||||
|
local map = helpers.map
|
||||||
|
|
||||||
local a = eval_helpers.alloc_logging_helpers
|
local a = eval_helpers.alloc_logging_helpers
|
||||||
local int = eval_helpers.int
|
local int = eval_helpers.int
|
||||||
@@ -40,9 +41,6 @@ local callback2tbl = eval_helpers.callback2tbl
|
|||||||
local tbl2callback = eval_helpers.tbl2callback
|
local tbl2callback = eval_helpers.tbl2callback
|
||||||
local dict_watchers = eval_helpers.dict_watchers
|
local dict_watchers = eval_helpers.dict_watchers
|
||||||
|
|
||||||
local concat_tables = global_helpers.concat_tables
|
|
||||||
local map = global_helpers.map
|
|
||||||
|
|
||||||
local lib = cimport('./src/nvim/eval/typval.h', './src/nvim/memory.h',
|
local lib = cimport('./src/nvim/eval/typval.h', './src/nvim/memory.h',
|
||||||
'./src/nvim/mbyte.h', './src/nvim/garray.h',
|
'./src/nvim/mbyte.h', './src/nvim/garray.h',
|
||||||
'./src/nvim/eval.h', './src/nvim/vim.h',
|
'./src/nvim/eval.h', './src/nvim/vim.h',
|
||||||
|
@@ -2,9 +2,7 @@ local helpers = require('test.unit.helpers')(after_each)
|
|||||||
local itp = helpers.gen_itp(it)
|
local itp = helpers.gen_itp(it)
|
||||||
local lfs = require('lfs')
|
local lfs = require('lfs')
|
||||||
local child_call_once = helpers.child_call_once
|
local child_call_once = helpers.child_call_once
|
||||||
|
local sleep = helpers.sleep
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
local sleep = global_helpers.sleep
|
|
||||||
|
|
||||||
local ffi = helpers.ffi
|
local ffi = helpers.ffi
|
||||||
local cimport = helpers.cimport
|
local cimport = helpers.cimport
|
||||||
@@ -156,12 +154,12 @@ describe('u_write_undo', function()
|
|||||||
local file_contents = "testing permissions"
|
local file_contents = "testing permissions"
|
||||||
-- Write a text file where the undofile should go
|
-- Write a text file where the undofile should go
|
||||||
local correct_name = ffi.string(undo.u_get_undo_file_name(file_buffer.b_ffname, false))
|
local correct_name = ffi.string(undo.u_get_undo_file_name(file_buffer.b_ffname, false))
|
||||||
global_helpers.write_file(correct_name, file_contents, true, false)
|
helpers.write_file(correct_name, file_contents, true, false)
|
||||||
|
|
||||||
-- Call with `forceit`.
|
-- Call with `forceit`.
|
||||||
u_write_undo(correct_name, true, file_buffer, buffer_hash)
|
u_write_undo(correct_name, true, file_buffer, buffer_hash)
|
||||||
|
|
||||||
local undo_file_contents = global_helpers.read_file(correct_name)
|
local undo_file_contents = helpers.read_file(correct_name)
|
||||||
|
|
||||||
neq(file_contents, undo_file_contents)
|
neq(file_contents, undo_file_contents)
|
||||||
local success, deletion_err = os.remove(correct_name) -- delete the file now that we're done with it.
|
local success, deletion_err = os.remove(correct_name) -- delete the file now that we're done with it.
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
local helpers = require('test.unit.helpers')(after_each)
|
local helpers = require('test.unit.helpers')(after_each)
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
local itp = helpers.gen_itp(it)
|
local itp = helpers.gen_itp(it)
|
||||||
local viml_helpers = require('test.unit.viml.helpers')
|
local viml_helpers = require('test.unit.viml.helpers')
|
||||||
|
|
||||||
@@ -8,6 +7,8 @@ local conv_enum = helpers.conv_enum
|
|||||||
local cimport = helpers.cimport
|
local cimport = helpers.cimport
|
||||||
local ffi = helpers.ffi
|
local ffi = helpers.ffi
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
|
local shallowcopy = helpers.shallowcopy
|
||||||
|
local intchar2lua = helpers.intchar2lua
|
||||||
|
|
||||||
local conv_ccs = viml_helpers.conv_ccs
|
local conv_ccs = viml_helpers.conv_ccs
|
||||||
local new_pstate = viml_helpers.new_pstate
|
local new_pstate = viml_helpers.new_pstate
|
||||||
@@ -15,9 +16,6 @@ local conv_cmp_type = viml_helpers.conv_cmp_type
|
|||||||
local pstate_set_str = viml_helpers.pstate_set_str
|
local pstate_set_str = viml_helpers.pstate_set_str
|
||||||
local conv_expr_asgn_type = viml_helpers.conv_expr_asgn_type
|
local conv_expr_asgn_type = viml_helpers.conv_expr_asgn_type
|
||||||
|
|
||||||
local shallowcopy = global_helpers.shallowcopy
|
|
||||||
local intchar2lua = global_helpers.intchar2lua
|
|
||||||
|
|
||||||
local lib = cimport('./src/nvim/viml/parser/expressions.h')
|
local lib = cimport('./src/nvim/viml/parser/expressions.h')
|
||||||
|
|
||||||
local eltkn_type_tab, eltkn_mul_type_tab, eltkn_opt_scope_tab
|
local eltkn_type_tab, eltkn_mul_type_tab, eltkn_opt_scope_tab
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
local helpers = require('test.unit.helpers')(after_each)
|
local helpers = require('test.unit.helpers')(after_each)
|
||||||
local global_helpers = require('test.helpers')
|
|
||||||
local itp = helpers.gen_itp(it)
|
local itp = helpers.gen_itp(it)
|
||||||
local viml_helpers = require('test.unit.viml.helpers')
|
local viml_helpers = require('test.unit.viml.helpers')
|
||||||
|
|
||||||
@@ -14,6 +13,11 @@ local cimport = helpers.cimport
|
|||||||
local ffi = helpers.ffi
|
local ffi = helpers.ffi
|
||||||
local neq = helpers.neq
|
local neq = helpers.neq
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
|
local mergedicts_copy = helpers.mergedicts_copy
|
||||||
|
local format_string = helpers.format_string
|
||||||
|
local format_luav = helpers.format_luav
|
||||||
|
local intchar2lua = helpers.intchar2lua
|
||||||
|
local dictdiff = helpers.dictdiff
|
||||||
|
|
||||||
local conv_ccs = viml_helpers.conv_ccs
|
local conv_ccs = viml_helpers.conv_ccs
|
||||||
local new_pstate = viml_helpers.new_pstate
|
local new_pstate = viml_helpers.new_pstate
|
||||||
@@ -21,12 +25,6 @@ local conv_cmp_type = viml_helpers.conv_cmp_type
|
|||||||
local pstate_set_str = viml_helpers.pstate_set_str
|
local pstate_set_str = viml_helpers.pstate_set_str
|
||||||
local conv_expr_asgn_type = viml_helpers.conv_expr_asgn_type
|
local conv_expr_asgn_type = viml_helpers.conv_expr_asgn_type
|
||||||
|
|
||||||
local mergedicts_copy = global_helpers.mergedicts_copy
|
|
||||||
local format_string = global_helpers.format_string
|
|
||||||
local format_luav = global_helpers.format_luav
|
|
||||||
local intchar2lua = global_helpers.intchar2lua
|
|
||||||
local dictdiff = global_helpers.dictdiff
|
|
||||||
|
|
||||||
local lib = cimport('./src/nvim/viml/parser/expressions.h',
|
local lib = cimport('./src/nvim/viml/parser/expressions.h',
|
||||||
'./src/nvim/syntax.h')
|
'./src/nvim/syntax.h')
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user