ppd.nvim/tests/specs/global_spec.lua
2024-07-06 06:17:55 -05:00

11 lines
246 B
Lua

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)