mirror of
https://github.com/PriceHiller/ppd.nvim.git
synced 2025-01-06 16:29:22 -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)
|