use ;
/// Global lock for environment variable modifications in tests.
/// All tests that modify environment variables (especially HOME) should acquire this lock
/// to prevent race conditions between parallel test executions.
pub static ENV_LOCK: = new;
/// Acquires the global environment lock for safe environment variable modifications in tests.
///
/// This function should be called by any test that modifies environment variables
/// to prevent race conditions in parallel test execution.