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:
Naeel
2026-04-15 08:19:52 +03:00
parent efa8721c36
commit cdc7f06765
24 changed files with 478 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
def main():
s = 0
for i in range(1, 100000):
s += (i * i) % 97
return f"cpu-load:{s}"