aboutsummaryrefslogtreecommitdiffstats
path: root/tests/core/functional/table_spec.lua
blob: 25adff59eeae878c26fa6bd54d141eee485e7831 (plain) (blame)
1
2
3
4
5
6
7
local _ = require "nvim-lsp-installer.core.functional"

describe("functional: table", function()
    it("retrieves property of table", function()
        assert.equals("hello", _.prop("a", { a = "hello" }))
    end)
end)