blob: 3daefce52d5bdb05ad2b187f7ec783f487972887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(*─────────────────────────────────────────────────────────────────────────────┐
│ SPDX-FileCopyrightText: 2025 toastal <https://toast.al/contact/> │
│ SPDX-License-Identifier: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception │
└─────────────────────────────────────────────────────────────────────────────*)
let () =
Alcotest.run "Nixtamal" [
"Input", Test_input.suite;
"Upgrade", Test_upgrade.suite;
"Fossil", Test_fossil.suite;
"Lockfile", Test_lockfile.suite;
]
|