fix(picker): rename picker function names

This commit is contained in:
Barrett Ruth 2025-09-30 20:27:31 -04:00
parent a7cd41712d
commit 5588eae526
5 changed files with 27 additions and 118 deletions

View file

@ -22,10 +22,10 @@ describe('cp.fzf_lua', function()
end)
end)
it('returns module with platform_picker function', function()
it('returns module with picker function', function()
local fzf_lua_cp = require('cp.pickers.fzf_lua')
assert.is_table(fzf_lua_cp)
assert.is_function(fzf_lua_cp.platform_picker)
assert.is_function(fzf_lua_cp.picker)
end)
end)
end)