summaryrefslogtreecommitdiff
path: root/tests/json.lua
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-08-09 04:45:40 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-08-09 04:45:40 +0200
commit091e1e639bb09568375c5b77a60b333d2f506c38 (patch)
tree6ba275a74ddfd1e3640da2b12bff74fb444b1600 /tests/json.lua
parent8fed3ca3744c489e9e1d33fed7cf25a3dca26a21 (diff)
downloadbidi-091e1e639bb09568375c5b77a60b333d2f506c38.tar.gz
Cleaned up testing files
Diffstat (limited to 'tests/json.lua')
-rw-r--r--tests/json.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/json.lua b/tests/json.lua
deleted file mode 100644
index a659889..0000000
--- a/tests/json.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-local file = io.open("tests/test.json", "r")
-local content = file:read("*a")
-file:close()
-
-local data = json.decode(content)
-
-print("name: " .. data.name)
-for _, n in pairs(data.numbers) do
- print(" - number: " .. n)
-end