//! Shared helpers for integration tests. Per-module test files at
//! `tests/<module>.rs` pull these in via `mod common; use common::*;`.
#![allow(dead_code)]usestd::path::Path;usestd::process::Command;pubfncargo_bin()-> String{env!("CARGO_BIN_EXE_fledge").to_string()}pubfnrun_fledge(args:&[&str])->std::process::Output{let bin =cargo_bin();Command::new(&bin).args(args).output().unwrap()}pubfnrun_fledge_in(dir:&Path, args:&[&str])->std::process::Output{let bin =cargo_bin();Command::new(&bin).args(args).current_dir(dir).output().unwrap()}