ppd.nvim/tests/specs/global_spec.lua

11 lines
246 B
Lua
Raw Normal View History

2024-07-06 06:08:49 -05:00
local ppd = require("ppd")
describe("Global Scoped", function()
before_each(function() end)
describe("pushd", function()
it("should set the correct directory", function()
assert.True(false)
end)
end)
end)