
- 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.
18 lines
338 B
Rust
18 lines
338 B
Rust
//! Comprehensive test suite for sandbox functionality
|
|
//!
|
|
//! This test suite validates the sandboxing capabilities across different platforms,
|
|
//! ensuring that security policies are correctly enforced.
|
|
|
|
#[cfg(unix)]
|
|
#[macro_use]
|
|
pub mod common;
|
|
|
|
#[cfg(unix)]
|
|
pub mod unit;
|
|
|
|
#[cfg(unix)]
|
|
pub mod integration;
|
|
|
|
#[cfg(unix)]
|
|
pub mod e2e;
|