From 5f634e0c37e723fc0c33e06b4fd5c2180178db40 Mon Sep 17 00:00:00 2001 From: William Boman Date: Wed, 6 Jul 2022 19:41:43 +0200 Subject: mason.nvim --- tests/helpers/lua/luassertx.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tests/helpers/lua/luassertx.lua') diff --git a/tests/helpers/lua/luassertx.lua b/tests/helpers/lua/luassertx.lua index 06d08ede..f4c9e702 100644 --- a/tests/helpers/lua/luassertx.lua +++ b/tests/helpers/lua/luassertx.lua @@ -1,6 +1,6 @@ local assert = require "luassert" local match = require "luassert.match" -local a = require "nvim-lsp-installer.core.async" +local a = require "mason.core.async" local function wait_for(_, arguments) ---@type fun() @Function to execute until it does not error. @@ -57,6 +57,14 @@ local function list_containing(_, arguments, _) end end +local function instanceof(_, arguments, _) + return function(value) + local expected_mt = arguments[1] + return getmetatable(value) == expected_mt + end +end + assert:register("matcher", "tbl_containing", tbl_containing) assert:register("matcher", "list_containing", list_containing) +assert:register("matcher", "instanceof", instanceof) assert:register("assertion", "wait_for", wait_for) -- cgit v1.2.3-70-g09d2