Don't depend on ~/.config/ in tests

This commit is contained in:
2023-11-14 20:14:13 +01:00
parent 9d2555c1a1
commit 1ff972803b

View File

@ -464,7 +464,10 @@ mod tests {
#[test]
fn test_config() -> Result<()> {
let c = Config::new()?;
std::env::set_var("RATATRIX_CONFIG", PathBuf::from(".config/"));
let c = Config::new();
std::env::remove_var("RATATRIX_CONFIG");
let c = c?;
assert_eq!(
c.keybindings
.get(&Mode::Home)