diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /tests/importConf_test.ml | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'tests/importConf_test.ml')
-rw-r--r-- | tests/importConf_test.ml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/importConf_test.ml b/tests/importConf_test.ml index 481b66c..5f98423 100644 --- a/tests/importConf_test.ml +++ b/tests/importConf_test.ml @@ -9,13 +9,14 @@ let check = Alcotest.(check (list Test_migration.extern_testable) "") configuration. *) let test_get_dependencies_for_source = "get_dependancies_for_table" >:: fun _ -> - let result = ImportConf.get_dependancies_for_table conf conf.source + 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 = ImportConf.get_dependancies_for_table conf external_table_other + let result = + ImporterSyntax.get_dependancies_for_table conf external_table_other and expected = [ external_last ] in check expected result |