aboutsummaryrefslogtreecommitdiff
path: root/spec/quick_spec.lua
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-03-13 15:32:35 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-03-13 19:08:05 +0000
commit4117ad5045b310a7902edb6a78c1c1386ddeaea0 (patch)
treee96d515f1d2646817bad41307770c1f56f3066db /spec/quick_spec.lua
parent1829ba36d0764c3210766bd0bc878695282114aa (diff)
downloadluarocks-4117ad5045b310a7902edb6a78c1c1386ddeaea0.tar.gz
luarocks-4117ad5045b310a7902edb6a78c1c1386ddeaea0.tar.bz2
luarocks-4117ad5045b310a7902edb6a78c1c1386ddeaea0.zip
tests: convert most pack tests
Diffstat (limited to 'spec/quick_spec.lua')
-rw-r--r--spec/quick_spec.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/quick_spec.lua b/spec/quick_spec.lua
index 8b8206cf..c2d8bb59 100644
--- a/spec/quick_spec.lua
+++ b/spec/quick_spec.lua
@@ -12,7 +12,9 @@ describe("quick tests: #quick", function()
12 if f:match("%.q$") then 12 if f:match("%.q$") then
13 local tests = quick.compile(spec_quick .. "/" .. f, getfenv and getfenv() or _ENV) 13 local tests = quick.compile(spec_quick .. "/" .. f, getfenv and getfenv() or _ENV)
14 for _, t in ipairs(tests) do 14 for _, t in ipairs(tests) do
15 it(t.name, t.fn) 15 if not t.pending then
16 it(t.name, t.fn)
17 end
16 end 18 end
17 end 19 end
18 end 20 end