diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-17 20:48:43 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | 8e012f4804ecf1665819e761283120a3c0e73643 (patch) | |
tree | c168efe3e1f0edf5e45695c643e62b3e5447be37 /tests/importCSV_test.ml | |
parent | bf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff) |
Switched from OUnit to alcotest
Diffstat (limited to 'tests/importCSV_test.ml')
-rw-r--r-- | tests/importCSV_test.ml | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/tests/importCSV_test.ml b/tests/importCSV_test.ml index bc21992..fc6d545 100644 --- a/tests/importCSV_test.ml +++ b/tests/importCSV_test.ml @@ -1,26 +1,19 @@ -open OUnit2 open ImportCSV +open Test_migration + +let assert_equal = Alcotest.(check int "") let test_suit = [ - ( "Column A" >:: fun _ -> - assert_equal - ~printer:(fun i -> Printf.sprintf "%d (%s)" i (Csv.column_to_string i)) - 1 (Csv.column_of_string "A") ); - ( "Column a" >:: fun _ -> - assert_equal - ~printer:(fun i -> Printf.sprintf "%d (%s)" i (Csv.column_to_string i)) - 1 (Csv.column_of_string "a") ); + ("Column A" >:: fun _ -> assert_equal 1 (Csv.column_of_string "A")); + ("Column a" >:: fun _ -> assert_equal 1 (Csv.column_of_string "a")); ( "Column name" >:: fun _ -> let () = for i = 1 to 1_000 do let column_name = Csv.column_to_string i in let column_index = Csv.column_of_string column_name in - assert_equal - ~printer:(fun i -> - Printf.sprintf "%d (%s)" i (Csv.column_to_string i)) - i column_index + assert_equal i column_index done in () ); |