aboutsummaryrefslogtreecommitdiff
path: root/tests/importConf_test.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-17 20:48:43 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-22 12:22:26 +0100
commit8e012f4804ecf1665819e761283120a3c0e73643 (patch)
treec168efe3e1f0edf5e45695c643e62b3e5447be37 /tests/importConf_test.ml
parentbf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff)
Switched from OUnit to alcotest
Diffstat (limited to 'tests/importConf_test.ml')
-rw-r--r--tests/importConf_test.ml11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/importConf_test.ml b/tests/importConf_test.ml
index c94eb91..481b66c 100644
--- a/tests/importConf_test.ml
+++ b/tests/importConf_test.ml
@@ -1,22 +1,23 @@
-open OUnit2
open ConfLoader
+open Test_migration
+
+let check = Alcotest.(check (list Test_migration.extern_testable) "")
(** Test the dependencies extracted from the external named "source".
Refer to the default configuration used in [ConfLoader] to see the
- configuration.
- *)
+ configuration. *)
let test_get_dependencies_for_source =
"get_dependancies_for_table" >:: fun _ ->
let result = ImportConf.get_dependancies_for_table conf conf.source
and expected = [ external_other ] in
- assert_equal ~printer:pp_externals expected result
+ check expected result
let test_get_dependencies_for_other =
"get_dependancies_for_table" >:: fun _ ->
let result = ImportConf.get_dependancies_for_table conf external_table_other
and expected = [ external_last ] in
- assert_equal ~printer:pp_externals expected result
+ check expected result
let tests =
"importConf_test"