rush-sh 0.8.0

A POSIX sh-compatible shell written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tests for the state module
//!
//! This module organizes tests into focused submodules:
//! - `fd_table_tests`: File descriptor table operations
//! - `options_tests`: Shell options management
//! - `variable_tests`: Variable scoping and management
//! - `state_tests`: General state management
//! - `jobs_tests`: Job management and job table operations
//! - `signal_tests`: Signal handling and SIGCHLD processing

mod fd_table_tests;
mod jobs_tests;
mod options_tests;
mod signal_tests;
mod state_tests;
mod variable_tests;