aboutsummaryrefslogtreecommitdiff
path: root/tests/sql_trim.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/sql_trim.ml
parentbf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff)
Switched from OUnit to alcotest
Diffstat (limited to 'tests/sql_trim.ml')
-rw-r--r--tests/sql_trim.ml8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/sql_trim.ml b/tests/sql_trim.ml
index 77e755e..dfa29e1 100644
--- a/tests/sql_trim.ml
+++ b/tests/sql_trim.ml
@@ -1,11 +1,13 @@
-open OUnit2
+open Test_migration
+
+let check = Alcotest.check Test_migration.sql_testable
let test_suit =
[
( "Trim" >:: fun _ ->
let text = Sqlite3.Data.TEXT " \nABC \n" in
- assert_equal (Sqlite3.Data.TEXT "ABC") (ImportSQL.Trim.f text) );
+ check "trim" (Sqlite3.Data.TEXT "ABC") (ImportSQL.Trim.f text) );
]
-let tests = "sql_trim" >::: test_suit
+let tests = ("sql_trim", test_suit)