Files
rdbms-playground/tests/it/main.rs
T
claude@clouddev1 8dec784080 feat: V5 show tables / relationships / indexes list commands
Add the list-all show family as one Command::ShowList { kind }
variant. A read-only worker show_list formats count-headed lists
(reusing do_list_tables / read_all_relationships /
read_table_indexes, so it never drifts from the items panel);
internal __rdbms_* tables excluded. Help + parse-usage entries
added; 10 integration tests in tests/it/show_list.rs.

Mark V5 [x]. Split the singular show relationship/index <name>
detail forms (the [<name>] half) into a new tracked V5a [ ] item
rather than leaving them as an untracked footnote.
2026-06-07 13:20:52 +00:00

36 lines
1020 B
Rust

//! Consolidated integration-test binary (see
//! `docs/plans/20260602-test-consolidation.md`).
//!
//! Each former top-level `tests/*.rs` is now a module here, so the
//! whole suite links into **one** binary instead of 26 — turning an
//! edit-the-lib-then-test cycle from 26 separate links into one.
//! `tests/typing_surface_matrix.rs` stays a separate binary (it is
//! already a consolidated `mod`-based target).
mod case_insensitive_names;
mod column_op_guards;
mod engine_vocabulary_audit;
mod friendly_enrichment;
mod iteration2_persistence;
mod iteration3_rebuild;
mod iteration4a_rebuild_command;
mod iteration4b_lifecycle_commands;
mod iteration5_export_import;
mod iteration6_resume_history;
mod parse_error_pedagogy;
mod project_lifecycle;
mod replay_command;
mod sql_alter_table;
mod sql_create_index;
mod sql_create_table;
mod sql_delete;
mod sql_dml_e2e;
mod sql_drop_index;
mod sql_drop_table;
mod sql_insert;
mod sql_select;
mod sql_update;
mod show_list;
mod undo_snapshots;
mod walking_skeleton;