aboutsummaryrefslogtreecommitdiff
path: root/Lua/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Lua/test.lua')
-rw-r--r--Lua/test.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lua/test.lua b/Lua/test.lua
index 731b044..d812009 100644
--- a/Lua/test.lua
+++ b/Lua/test.lua
@@ -54,3 +54,10 @@ print(pat:replace("{@0}", "...baz..."))
for m in pat:matches("hello world") do
print(m)
end
+
+
+local ok, err = pcall(function()
+ bp.match("nonexistent", "xxx")
+end)
+assert(not ok)
+print("(Successfully caught pattern matching error)")