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/sql_match.ml | |
parent | bf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff) |
Switched from OUnit to alcotest
Diffstat (limited to 'tests/sql_match.ml')
-rw-r--r-- | tests/sql_match.ml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/sql_match.ml b/tests/sql_match.ml deleted file mode 100644 index 0314bb3..0000000 --- a/tests/sql_match.ml +++ /dev/null @@ -1,12 +0,0 @@ -open OUnit2 - -let test_suit = - [ - ( "Parse regex" >:: fun _ -> - let text = Sqlite3.Data.TEXT "hello world" - and regex = Sqlite3.Data.TEXT "hello ([A-Za-z]+)" in - - assert_equal (Sqlite3.Data.TEXT "world") (ImportSQL.Match.f regex text) ); - ] - -let tests = "sql_match" >::: test_suit |