diff options
author | polwex <polwex@sortug.com> | 2025-10-06 23:18:59 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-10-06 23:18:59 +0700 |
commit | 5de3f7a3ad7b0cf63b4a6cbddfc1e26359dea161 (patch) | |
tree | b55b2258123149bed40bd89bbaa58e7da54f3a26 /ocaml/test/test_jam_debug.ml | |
parent | fdab65f6dac4ba85ed4749f61970660d1132d453 (diff) |
cleaned up tests
Diffstat (limited to 'ocaml/test/test_jam_debug.ml')
-rw-r--r-- | ocaml/test/test_jam_debug.ml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/ocaml/test/test_jam_debug.ml b/ocaml/test/test_jam_debug.ml deleted file mode 100644 index cad3ee9..0000000 --- a/ocaml/test/test_jam_debug.ml +++ /dev/null @@ -1,20 +0,0 @@ -open Nock_lib.Noun -open Nock_lib.Serial - -let () = - Printf.printf "Testing jam encoding:\n"; - - (* Test 0 *) - let n0 = atom 0 in - let j0 = jam n0 in - Printf.printf "jam(0) = %s\n" (bytes_to_hex j0); - - (* Test 1 *) - let n1 = atom 1 in - let j1 = jam n1 in - Printf.printf "jam(1) = %s\n" (bytes_to_hex j1); - - (* Test 2 *) - let n2 = atom 2 in - let j2 = jam n2 in - Printf.printf "jam(2) = %s\n" (bytes_to_hex j2); |