From 8e012f4804ecf1665819e761283120a3c0e73643 Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Fri, 17 Jan 2025 20:48:43 +0100 Subject: Switched from OUnit to alcotest --- tests/configuration_toml.ml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'tests/configuration_toml.ml') diff --git a/tests/configuration_toml.ml b/tests/configuration_toml.ml index 67f8d75..dc1f769 100644 --- a/tests/configuration_toml.ml +++ b/tests/configuration_toml.ml @@ -1,6 +1,6 @@ -open OUnit2 module Expression = ImportExpression.T module Path = ImportDataTypes.Path +open Test_migration let test_suit = [ @@ -27,11 +27,10 @@ let test_suit = } in - let printer s = - String.concat "," (List.map ImportConf.print_extern s) - in - - assert_equal ~printer [ expected ] result.externals ); + ignore + @@ Alcotest.check + (Alcotest.list Test_migration.extern_testable) + "" [ expected ] result.externals ); ( "parse_columns" >:: fun _ -> let toml = Otoml.Parser.from_file "configuration/simple.toml" in let toml = ImportConf.t_of_toml toml in @@ -57,11 +56,9 @@ let test_suit = ] in - List.iter2 - (fun expected result -> - assert_equal ~printer:ImportConf.print_path_expression expected - result) - expected result.columns ); + Alcotest.check + (Alcotest.list Test_migration.expression_testable) + "" expected result.columns ); ( "parse_csv" >:: fun _ -> let toml = Otoml.Parser.from_file "configuration/example_csv.toml" in let toml = ImportConf.t_of_toml toml in -- cgit v1.2.3