Monorepo management for opam overlays
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(tests): normalize suite names to lowercase snake_case (E617)

All test suite names now follow the convention: lowercase snake_case
matching the test filename. Changes:
- crowbar examples: 'crowbar' → filename (calendar/fpath/map/pprint/uunf)
- irmin: uppercase suites → lowercase
- memtrace: uppercase/mismatched → lowercase matching filename
- monopam/ocaml-agent/ocaml-aos/ocaml-conpool/ocaml-cookeio/ocaml-crow:
uppercase → lowercase
- ocaml-crypto: 'cipher' → 'crypto'
- ocaml-github-oauth: 'github-oauth' → 'github_oauth'
- ocaml-jsonwt/ocaml-linkedin/ocaml-merlin: mismatch fixed
- ocaml-oci: rename test_OS.ml/.mli → test_os.ml/.mli, suite 'OS' → 'os'
- ocaml-precommit: 'hooks' → 'precommit'
- ocaml-sexpt: 'dune_codec' → 'dune'
- ocaml-slack: 'md' → 'markdown'
- ocaml-sle: 'FCLTU' → 'fcltu'
- ocaml-space-packet: 'space-packet' → 'space_packet'
- ocaml-tls: 'tls-eio'/'tls-unix' → snake_case
- ocaml-tomlt: 'tomlt-*' → snake_case

+5 -5
+1 -1
test/test_config.ml
··· 132 132 Alcotest.(check string) "default branch is main" "main" Config.default_branch 133 133 134 134 let suite = 135 - ( "Config", 135 + ( "config", 136 136 [ 137 137 Alcotest.test_case "basic" `Quick test_create_basic; 138 138 Alcotest.test_case "with knot" `Quick test_create_with_knot;
+1 -1
test/test_package.ml
··· 145 145 Alcotest.(check bool) "no match" false (Package.matches_name "other" pkg) 146 146 147 147 let suite = 148 - ( "Package", 148 + ( "package", 149 149 [ 150 150 Alcotest.test_case "basic" `Quick test_create_basic; 151 151 Alcotest.test_case "with branch" `Quick test_create_with_branch;
+1 -1
test/test_pkg.ml
··· 261 261 (Pkg.derive_dev_repo ~sources ~subtree:"my-pkg" dp) 262 262 263 263 let suite = 264 - ( "Pkg", 264 + ( "pkg", 265 265 [ 266 266 Alcotest.test_case "matches by pkg name" `Quick test_matches_by_pkg_name; 267 267 Alcotest.test_case "matches by subtree" `Quick
+1 -1
test/test_remote_cache.ml
··· 189 189 "default ttl is 5 minutes" 300.0 Remote_cache.default_ttl 190 190 191 191 let suite = 192 - ( "Remote_cache", 192 + ( "remote_cache", 193 193 [ 194 194 Alcotest.test_case "empty cache" `Quick test_empty_cache; 195 195 Alcotest.test_case "set and get" `Quick test_set_get;
+1 -1
test/test_status.ml
··· 181 181 Alcotest.(check int) "3 actionable" 3 (List.length result) 182 182 183 183 let suite = 184 - ( "Status", 184 + ( "status", 185 185 [ 186 186 Alcotest.test_case "missing" `Quick test_is_checkout_clean_missing; 187 187 Alcotest.test_case "not repo" `Quick test_checkout_clean_not_repo;