feat: add 15 auto-test functions + destroy-test + versioning rules
Batch 1: ok, echo, error, cpu, slow Batch 2: jsonout, recurse, bigdata, math, timestamp Batch 3: multiline, encoding, nested, memory, chain Tests: create, update (code_hash), idempotency, destroy, re-create All 15 functions verified via curl with JWT auth
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
def main():
|
||||
try:
|
||||
a = 1 / 0
|
||||
except ZeroDivisionError:
|
||||
try:
|
||||
raise ValueError("nested after div-by-zero")
|
||||
except ValueError as e:
|
||||
return f"caught-nested:{e}"
|
||||
return "unreachable"
|
||||
Reference in New Issue
Block a user