Skip to content
Snippets Groups Projects
Commit 7e1bf350 authored by Daniil Lemenkov's avatar Daniil Lemenkov Committed by Konstantin Osipov
Browse files

tap: add ':isfunction()' test function (#2928)

Implement ':isfunction()' test function  in Tap testing framework
that checks whether type of an argument is 'function'.

Closes #1859
parent ce1a3774
No related branches found
No related tags found
No related merge requests found
......@@ -182,6 +182,10 @@ local function isboolean(test, v, message, extra)
return is(test, type(v), 'boolean', message, extra)
end
local function isfunction(test, v, message, extra)
return is(test, type(v), 'function', message, extra)
end
local function isudata(test, v, utype, message, extra)
extra = extra or {}
extra.expected = 'userdata<'..utype..'>'
......@@ -279,6 +283,7 @@ test_mt = {
isstring = isstring;
istable = istable;
isboolean = isboolean;
isfunction = isfunction;
isudata = isudata;
iscdata = iscdata;
is_deeply = is_deeply;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment