//! Regression tests for `Stabilized` insertion.
//!
//! The insert path skips its tombstone-reuse scan when appending is cheap:
//! either the backend reports spare capacity (`capacity_node`/`capacity_edge`
//! return `Some(cap > len)`), or — when it reports no capacity — there are no
//! tombstones to reuse. Without this, a fresh build did an O(n) scan per
//! insert (O(n²) overall); see CLAUDE.md.
use Graph;
use ;