gag 1.0.0

Gag, redirect, or hold stdout/stderr output. Currently only *nix operating systems are supported.
Documentation
extern crate gag;
#[macro_use]
extern crate lazy_static;

use gag::{BufferRedirect, Hold};
use std::io::{Read, Write};
use std::sync::Mutex;

lazy_static! {
    static ref STDERR_MUTEX: Mutex<()> = Mutex::new(());
}

// Catch the cases not covered by the doc tests.

#[test]
fn test_buffer_stderr() {
    let _l = STDERR_MUTEX.lock().unwrap();

    let mut buf = BufferRedirect::stderr().unwrap();
    println!("Don't capture");
    ::std::io::stderr().write_all(b"Hello world!\n").unwrap();

    let mut output = String::new();
    buf.read_to_string(&mut output).unwrap();

    assert_eq!(&output[..], "Hello world!\n");
}

#[test]
fn test_gag_stderr_twice() {
    let _l = STDERR_MUTEX.lock().unwrap();

    let hold = Hold::stderr();
    let hold2 = Hold::stderr();
    assert!(hold.is_ok());
    assert!(hold2.is_err());
}