Skip to content

Commit

Permalink
feat(test): Re-export ProcessBuilder
Browse files Browse the repository at this point in the history
Since its tied heavily into the API, this should make it easier to use
and document.
  • Loading branch information
epage committed Jul 19, 2024
1 parent f10c069 commit 879bc9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/cargo-test-support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::thread::JoinHandle;
use std::time::{self, Duration};

use anyhow::{bail, Result};
use cargo_util::{is_ci, ProcessBuilder, ProcessError};
use cargo_util::{is_ci, ProcessError};
use snapbox::IntoData as _;
use url::Url;

Expand All @@ -40,6 +40,7 @@ macro_rules! t {
};
}

pub use cargo_util::ProcessBuilder;
pub use snapbox::file;
pub use snapbox::str;
pub use snapbox::utils::current_dir;
Expand Down

0 comments on commit 879bc9e

Please sign in to comment.