aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2018-11-27 16:29:43 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-12-20 11:57:30 +0100
commite6d0dea42b28a4814546bcf699ce277c365ebfc1 (patch)
treea5dd79853c12837dfc35d001939f9ef947a6b75b /test/helpers.lua
parentccb005b9e0d509bbe595515e7e17b0e9713a2c19 (diff)
downloadrneovim-e6d0dea42b28a4814546bcf699ce277c365ebfc1.tar.gz
rneovim-e6d0dea42b28a4814546bcf699ce277c365ebfc1.tar.bz2
rneovim-e6d0dea42b28a4814546bcf699ce277c365ebfc1.zip
test: Lua 5.2/5.3 compat #9280
Make the code run both on Lua 5.1 (which is the default for Neovim, and is what LuaJIT provides) and Lua 5.2+.
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 6ef7a456f4..30bae01216 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -2,6 +2,7 @@ local assert = require('luassert')
local luv = require('luv')
local lfs = require('lfs')
local relpath = require('pl.path').relpath
+local unpack = table.unpack or unpack -- luacheck: ignore
local quote_me = '[^.%w%+%-%@%_%/]' -- complement (needn't quote)
local function shell_quote(str)