aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/mpack_spec.lua
blob: cc788ed8bb59c6bbde416f7753566b5965b72df2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- Test suite for testing interactions with API bindings
local helpers = require('test.functional.helpers')(after_each)

local clear = helpers.clear
local eq = helpers.eq
local exec_lua = helpers.exec_lua

describe('lua vim.mpack', function()
  before_each(clear)
  it('encodes vim.NIL', function()
    eq({true, true, true, true}, exec_lua [[
      local var = vim.mpack.decode(vim.mpack.encode({33, vim.NIL, 77}))
      return {var[1]==33, var[2]==vim.NIL, var[3]==77, var[4]==nil}
    ]])
  end)

  it('encodes vim.empty_dict()', function()
    eq({{{}, "foo", {}}, true, false}, exec_lua [[
      local var = vim.mpack.decode(vim.mpack.encode({{}, "foo", vim.empty_dict()}))
      return {var, vim.tbl_islist(var[1]), vim.tbl_islist(var[3])}
    ]])
  end)
end)