fish-shell/fish-rust/src/tests/mod.rs

58 lines
1.3 KiB
Rust
Raw Normal View History

use crate::wchar::prelude::*;
#[cfg(test)]
mod common;
mod complete;
2023-12-09 23:48:02 +08:00
mod debounce;
2023-12-03 01:20:40 +08:00
#[cfg(test)]
mod editable_line;
#[cfg(test)]
2023-12-10 04:20:38 +08:00
mod encoding;
mod env;
mod env_universal_common;
mod expand;
mod fd_monitor;
mod highlight;
mod history;
2023-12-02 23:26:45 +08:00
mod pager;
2023-12-10 03:47:43 +08:00
mod parse_util;
mod parser;
#[cfg(test)]
mod redirection;
2023-11-26 02:40:31 +08:00
mod screen;
mod string_escape;
2023-09-17 19:42:24 +08:00
#[cfg(test)]
2023-12-10 17:38:06 +08:00
mod threads;
#[cfg(test)]
2023-09-17 19:42:24 +08:00
mod tokenizer;
mod topic_monitor;
2023-12-10 00:10:36 +08:00
mod wgetopt;
mod prelude {
use crate::env::EnvStack;
pub use crate::tests::env::{PwdEnvironment, TestEnvironment};
use crate::wutil::wgetcwd;
use once_cell::sync::Lazy;
use std::sync::Mutex;
static PUSHED_DIRS: Lazy<Mutex<Vec<String>>> = Lazy::new(Mutex::default);
/// Helper to chdir and then update $PWD.
pub fn pushd(path: &str) {
let cwd = wgetcwd();
PUSHED_DIRS.lock().unwrap().push(cwd.to_string());
// We might need to create the directory. We don't care if this fails due to the directory
// already being present.
std::fs::create_dir_all(path).unwrap();
std::env::set_current_dir(path).unwrap();
EnvStack::principal().set_pwd_from_getcwd();
}
pub fn popd() {
let old_cwd = PUSHED_DIRS.lock().unwrap().pop().unwrap();
std::env::set_current_dir(old_cwd).unwrap();
EnvStack::principal().set_pwd_from_getcwd();
}
}