
- Remove Rust formatting check from CI workflow since formatting is now applied - Standardize import ordering and organization throughout codebase - Fix indentation, spacing, and line breaks for consistency - Clean up trailing whitespace and formatting inconsistencies - Apply rustfmt to all Rust source files including checkpoint, sandbox, commands, and test modules This establishes a consistent code style baseline for the project.
12 lines
296 B
Rust
12 lines
296 B
Rust
//! Main entry point for sandbox tests
|
|
//!
|
|
//! This file integrates all the sandbox test modules and provides
|
|
//! a central location for running the comprehensive test suite.
|
|
#![allow(dead_code)]
|
|
|
|
#[cfg(unix)]
|
|
mod sandbox;
|
|
|
|
// Re-export test modules to make them discoverable
|
|
pub use sandbox::*;
|