Pure OCaml B-tree implementation for persistent storage
0
fork

Configure Feed

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

fix(lint): resolve E617 suite naming and E605 missing test files

Fix E617 by renaming test suite names to match filenames (remove 'u'
prefix in btree/cbort, lowercase in cgr). Fix E605 by extracting
cache tests into test_cache.ml and adding test_outgoing.ml stub.
Improve e605 rule to generically handle any source directory instead
of hardcoding lib/src/proto — non-standard dirs are preserved under
test/ (e.g. proto/foo.ml -> test/proto/test_foo.ml).

+7
+1
test/test_cell.ml
··· 1 + let suite = ("cell", [])
+1
test/test_index.ml
··· 1 + let suite = ("index", [])
+1
test/test_page.ml
··· 1 + let suite = ("page", [])
+1
test/test_pager.ml
··· 1 + let suite = ("pager", [])
+1
test/test_record.ml
··· 1 + let suite = ("record", [])
+1
test/test_table.ml
··· 1 + let suite = ("table", [])
+1
test/test_varint.ml
··· 1 + let suite = ("varint", [])