OCaml library and CLI for OCI and Docker image manipulation
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

+2 -2
+1 -1
test/spec/test_OS.ml test/spec/test_os.ml
··· 27 27 | Error (`Msg _) -> () 28 28 29 29 let suite = 30 - ( "OS", 30 + ( "os", 31 31 [ 32 32 test_case "roundtrip" `Quick roundtrip; test_case "invalid" `Quick invalid; 33 33 ] )
test/spec/test_OS.mli test/spec/test_os.mli
+1 -1
test/test.ml
··· 26 26 Test_media_type.suite; 27 27 Test_oci.suite; 28 28 Test_oci_spec.suite; 29 - Test_OS.suite; 29 + Test_os.suite; 30 30 Test_platform.suite; 31 31 Test_push.suite; 32 32 Test_show.suite;