blob: 5f984235ba1061fc7d443d94801d7de6c5b13c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
open ConfLoader
open Test_migration
let check = Alcotest.(check (list Test_migration.extern_testable) "")
(** Test the dependencies extracted from the external named "source".
Refer to the default configuration used in [ConfLoader] to see the
configuration. *)
let test_get_dependencies_for_source =
"get_dependancies_for_table" >:: fun _ ->
let result = ImporterSyntax.get_dependancies_for_table conf conf.source
and expected = [ external_other ] in
check expected result
let test_get_dependencies_for_other =
"get_dependancies_for_table" >:: fun _ ->
let result =
ImporterSyntax.get_dependancies_for_table conf external_table_other
and expected = [ external_last ] in
check expected result
let tests =
"importConf_test"
>::: [ test_get_dependencies_for_source; test_get_dependencies_for_other ]
|