diff options
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 |