diff options
-rw-r--r-- | conf.d/project/lua.d/aft.lua | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/conf.d/project/lua.d/aft.lua b/conf.d/project/lua.d/aft.lua index 92550e0..28d8185 100644 --- a/conf.d/project/lua.d/aft.lua +++ b/conf.d/project/lua.d/aft.lua @@ -261,8 +261,6 @@ local luaunit_list_of_assert = { 'assertErrorMsgMatches', 'assertIs', 'assertNotIs', - 'wrapFunctions', - 'wrapFunctions', -- type assertions: assertIsXXX -> assert_is_xxx 'assertIsNumber', @@ -282,42 +280,6 @@ local luaunit_list_of_assert = { 'assertIsThread', 'assertIsUserdata', - -- type assertions: assertIsXXX -> assertXxx - 'assertIsNumber', - 'assertIsString', - 'assertIsTable', - 'assertIsBoolean', - 'assertIsNil', - 'assertIsTrue', - 'assertIsFalse', - 'assertIsNaN', - 'assertIsInf', - 'assertIsPlusInf', - 'assertIsMinusInf', - 'assertIsPlusZero', - 'assertIsMinusZero', - 'assertIsFunction', - 'assertIsThread', - 'assertIsUserdata', - - -- type assertions: assertIsXXX -> assert_xxx (luaunit v2 compat) - 'assertIsNumber', - 'assertIsString', - 'assertIsTable', - 'assertIsBoolean', - 'assertIsNil', - 'assertIsTrue', - 'assertIsFalse', - 'assertIsNaN', - 'assertIsInf', - 'assertIsPlusInf', - 'assertIsMinusInf', - 'assertIsPlusZero', - 'assertIsMinusZero', - 'assertIsFunction', - 'assertIsThread', - 'assertIsUserdata', - -- type assertions: assertNotIsXXX -> assert_not_is_xxx 'assertNotIsNumber', 'assertNotIsString', @@ -335,52 +297,6 @@ local luaunit_list_of_assert = { 'assertNotIsFunction', 'assertNotIsThread', 'assertNotIsUserdata', - - -- type assertions: assertNotIsXXX -> assertNotXxx (luaunit v2 compat) - 'assertNotIsNumber', - 'assertNotIsString', - 'assertNotIsTable', - 'assertNotIsBoolean', - 'assertNotIsNil', - 'assertNotIsTrue', - 'assertNotIsFalse', - 'assertNotIsNaN', - 'assertNotIsInf', - 'assertNotIsPlusInf', - 'assertNotIsMinusInf', - 'assertNotIsPlusZero', - 'assertNotIsMinusZero', - 'assertNotIsFunction', - 'assertNotIsThread', - 'assertNotIsUserdata', - - -- type assertions: assertNotIsXXX -> assert_not_xxx - 'assertNotIsNumber', - 'assertNotIsString', - 'assertNotIsTable', - 'assertNotIsBoolean', - 'assertNotIsNil', - 'assertNotIsTrue', - 'assertNotIsFalse', - 'assertNotIsNaN', - 'assertNotIsInf', - 'assertNotIsPlusInf', - 'assertNotIsMinusInf', - 'assertNotIsPlusZero', - 'assertNotIsMinusZero', - 'assertNotIsFunction', - 'assertNotIsThread', - 'assertNotIsUserdata', - - -- all assertions with Coroutine duplicate Thread assertions - 'assertIsThread', - 'assertIsThread', - 'assertIsThread', - 'assertIsThread', - 'assertNotIsThread', - 'assertNotIsThread', - 'assertNotIsThread', - 'assertNotIsThread', } local luaunit_list_of_functions = { |