mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
17 lines
425 B
Lua
17 lines
425 B
Lua
|
|
local lu = require("plenary.luaunit")
|
|
local test_harness = require("plenary.test_harness")
|
|
|
|
require("tests.plenary.path_spec")
|
|
|
|
-- lu.LuaUnit.run("./tests/plenary/path_spec.lua")
|
|
-- lu.LuaUnit.run({"TestPath"})
|
|
|
|
test_harness:run(0, 0, "TestPath")
|
|
|
|
|
|
[[
|
|
lua require("plenary.test_harness"):test_directory("luaunit", "./tests/plenary/lu/")
|
|
lua require("plenary.test_harness"):test_directory("busted", "./tests/plenary/bu/")
|
|
]]
|