mirror of
https://github.com/PriceHiller/ppd.nvim.git
synced 2025-01-04 20:09:20 -06:00
11 lines
246 B
Lua
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)
|