aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fixtures/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/mod.rs')
-rw-r--r--tests/fixtures/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fixtures/mod.rs b/tests/fixtures/mod.rs
index 766886c..61d9e04 100644
--- a/tests/fixtures/mod.rs
+++ b/tests/fixtures/mod.rs
@@ -2,7 +2,7 @@ use pty_process::Command as _;
use std::io::Read as _;
use std::os::unix::io::AsRawFd as _;
-pub fn run_fixture<F>(name: &str, screenguard: bool, f: F)
+pub fn run_fixture<F>(name: &str, features: &str, screenguard: bool, f: F)
where
F: FnOnce(&mut std::fs::File),
{
@@ -13,6 +13,7 @@ where
.current_target()
.manifest_path("tests/fixtures/bin/Cargo.toml")
.target_dir(temp.path())
+ .features(features)
.run()
.unwrap();
let mut cmd = run.command();