diff options
| author | ยท๐๐ด๐๐๐ฉ๐ค | 2025-12-10 13:00:26 +0000 |
|---|---|---|
| committer | ยท๐๐ด๐๐๐ฉ๐ค | 2025-12-10 13:00:26 +0000 |
| commit | 3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0 (patch) | |
| tree | 5ce28db0cd6a4f15a7626fb1b9982e13a7b6f086 /test | |
| parent | d3f85acf813d78c6d9972c8f10ff9c3a76bd0f08 (diff) | |
| download | nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar.gz nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar.bz2 nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar.lz nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar.xz nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.tar.zst nixtaml-3df27ffb2bd40f3eaeed6dfb08ef3041cc60bfe0.zip | |
ocaml onset
Diffstat (limited to 'test')
| -rw-r--r-- | test/dune | 6 | ||||
| -rw-r--r-- | test/test_main.ml | 8 | ||||
| -rw-r--r-- | test/test_nixtamal.ml | 8 | ||||
| -rw-r--r-- | test/test_source.ml | 4 |
4 files changed, 26 insertions, 0 deletions
diff --git a/test/dune b/test/dune new file mode 100644 index 0000000..b4163ca --- /dev/null +++ b/test/dune @@ -0,0 +1,6 @@ +(test + (name test_main) + (libraries nixtamal alcotest)) + +(test + (name test_nixtamal)) diff --git a/test/test_main.ml b/test/test_main.ml new file mode 100644 index 0000000..5500c28 --- /dev/null +++ b/test/test_main.ml @@ -0,0 +1,8 @@ +(* SPDX-FileCopyrightText: 2025 toastal <toastal@posteo.net> *) +(* SPDX-License-Identifier: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception *) +let () = + (* + let open Alcotest in + run "Nixtamal Suite" [] + *) + () diff --git a/test/test_nixtamal.ml b/test/test_nixtamal.ml new file mode 100644 index 0000000..5500c28 --- /dev/null +++ b/test/test_nixtamal.ml @@ -0,0 +1,8 @@ +(* SPDX-FileCopyrightText: 2025 toastal <toastal@posteo.net> *) +(* SPDX-License-Identifier: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception *) +let () = + (* + let open Alcotest in + run "Nixtamal Suite" [] + *) + () diff --git a/test/test_source.ml b/test/test_source.ml new file mode 100644 index 0000000..d5b7730 --- /dev/null +++ b/test/test_source.ml @@ -0,0 +1,4 @@ +(* SPDX-FileCopyrightText: 2025 toastal <toastal@posteo.net> *) +(* SPDX-License-Identifier: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception *) +let suite = [ +] |
