HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/neovim/test/functional/lua/spell_spec.lua
local t = require('test.testutil')
local n = require('test.functional.testnvim')()

local clear = n.clear
local exec_lua = n.exec_lua
local eq = t.eq
local pcall_err = t.pcall_err

describe('vim.spell', function()
  before_each(function()
    clear()
  end)

  describe('.check', function()
    local check = function(x, exp)
      return eq(exp, exec_lua('return vim.spell.check(...)', x))
    end

    it('can handle nil', function()
      eq(
        [[bad argument #1 to 'check' (expected string)]],
        pcall_err(exec_lua, [[vim.spell.check(nil)]])
      )
    end)

    it('can check spellings', function()
      check('hello', {})

      check('helloi', { { 'helloi', 'bad', 1 } })

      check('hello therei', { { 'therei', 'bad', 7 } })

      check('hello. there', { { 'there', 'caps', 8 } })

      check('neovim cna chkc spellins. okay?', {
        { 'neovim', 'bad', 1 },
        { 'cna', 'bad', 8 },
        { 'chkc', 'bad', 12 },
        { 'spellins', 'bad', 17 },
        { 'okay', 'caps', 27 },
      })
    end)
  end)
end)