destructive_command_guard 0.4.3

A Claude Code hook that blocks destructive commands before they execute
Documentation
//! Common test utilities for DCG history E2E tests.
//!
//! This module provides shared infrastructure for testing history functionality:
//! - Isolated test databases via `TestDb`
//! - Test fixtures for realistic command data
//! - Logging utilities for debugging test failures
//!
//! # Usage
//!
//! ```ignore
//! mod common;
//! use common::db::TestDb;
//!
//! #[test]
//! fn my_test() {
//!     let test_db = TestDb::new();
//!     // Use test_db.db for testing...
//! }
//! ```

pub mod db;
pub mod fixtures;
pub mod logging;