mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 02:17:09 +10:00
feat: tostring(vim.version())
Problem: tostring(vim.version()) returns "table: 0x…". Solution: Modify vim.version() to return a string prerelease instead of a boolean. Fix #23863
This commit is contained in:
@@ -17,6 +17,18 @@ describe('version', function()
|
||||
eq({ major = 42, minor = 3, patch = 99 }, exec_lua("return vim.version.parse('v42.3.99')"))
|
||||
end)
|
||||
|
||||
it('version() returns Nvim version', function()
|
||||
local expected = exec_lua('return vim.fn.api_info().version')
|
||||
local actual = exec_lua('return vim.version()')
|
||||
eq(expected.major, actual.major)
|
||||
eq(expected.minor, actual.minor)
|
||||
eq(expected.patch, actual.patch)
|
||||
eq(expected.prerelease and 'dev' or nil, actual.prerelease)
|
||||
|
||||
-- tostring() #23863
|
||||
matches([[%d+%.%d+%.%d+]], exec_lua('return tostring(vim.version())'))
|
||||
end)
|
||||
|
||||
describe('_version()', function()
|
||||
local tests = {
|
||||
['v1.2.3'] = { major = 1, minor = 2, patch = 3 },
|
||||
|
||||
Reference in New Issue
Block a user