aboutsummaryrefslogtreecommitdiff
path: root/tests/importer_test.ml
blob: 16ea6638fda5c7c52cdaf16f5ff05afb7c6efa46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
open OUnit2

let _ =
  run_test_tt_main
    ("importer_tests"
    >::: [
           ImportCSV_test.tests;
           Sql_date.tests;
           Sql_match.tests;
           Sql_int.tests;
           Sql_trim.tests;
           ImportConf_test.tests;
           Configuration_toml.tests;
           Configuration_expression.tests;
           Expression_repr.tests;
           Expression_type_of.tests;
           Expression_query.tests;
           Analyser_dependency.tests;
           Analyser_query_test.tests;
           Sql_db.tests;
         ])