Don't depend on ~/.config/ in tests
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user