neovim/test/functional/vimscript/hostname_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
619 B
Lua
Raw Normal View History

local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local eq = t.eq
local ok = t.ok
local call = n.call
local clear = n.clear
local is_os = t.is_os
2017-04-07 10:46:33 -07:00
describe('hostname()', function()
before_each(clear)
it('returns hostname string', function()
local actual = call('hostname')
ok(string.len(actual) > 0)
2017-04-07 10:46:33 -07:00
if call('executable', 'hostname') == 1 then
local expected = string.gsub(call('system', 'hostname'), '[\n\r]', '')
eq(
(is_os('win') and expected:upper() or expected),
(is_os('win') and actual:upper() or actual)
2024-01-02 18:09:18 -07:00
)
2017-04-07 10:46:33 -07:00
end
end)
end)