summaryrefslogtreecommitdiff
path: root/test/vyconf_tree_test.ml
blob: 77a725cb1eafd5db6cdb6c26abd3540e399d27c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
open OUnit2

let test1 test_ctxt = assert_equal 0 0

let suite =
    "VyConf tree tests" >::: [
        "test_dummy">:: test1;
    ]

let () =
  run_test_tt_main suite