aboutsummaryrefslogtreecommitdiffstats
path: root/tests/core/clients/eclipse_spec.lua
blob: bd7fac1dabd827ea8cf5532b393190f2bee95145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
local eclipse = require "nvim-lsp-installer.core.clients.eclipse"

describe("eclipse client", function()
    it("parses jdtls version strings", function()
        assert.equal(
            "1.8.0-202112170540",
            eclipse._parse_jdtls_version_string "jdt-language-server-1.8.0-202112170540.tar.gz"
        )
    end)
end)