/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/lua/catches_strings_runme.lua
8 строк
351 B
Erez Geva
Improve Lua test syntax (#3463)
02 июн 2026, 01:23
Не верифицирован
02 июн 2026, 01:23
d483ae4
Код
Авторство
О чём код?
require("catches_strings") catch_undef_globs() -- catch "undefined" global variables s, msg = pcall(function() catches_strings.StringsThrower.charstring() end) assert(not s and msg:find("charstring message", 1, true)) s, msg = pcall(function() catches_strings.StringsThrower.stdstring() end) assert(not s and msg:find("stdstring message", 1, true))