qubit-command 0.4.0

Command-line process running utilities for Rust
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Tests for managed child process behavior.

#[cfg(not(windows))]
use std::time::Duration;

#[cfg(not(windows))]
use qubit_command::{
    Command,
    CommandError,
    CommandRunner,
};

#[cfg(not(windows))]
#[test]
fn test_managed_child_process_can_be_killed_on_timeout() {
    let error = CommandRunner::new()
        .timeout(Duration::from_millis(20))
        .run(Command::shell("sleep 1"))
        .expect_err("long-running command should time out");

    assert!(matches!(error, CommandError::TimedOut { .. }));
}