summaryrefslogtreecommitdiffstats
path: root/src/bug_report.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bug_report.rs')
-rw-r--r--src/bug_report.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/bug_report.rs b/src/bug_report.rs
index 82a76b61e..28a9bb720 100644
--- a/src/bug_report.rs
+++ b/src/bug_report.rs
@@ -266,18 +266,6 @@ mod tests {
}
#[test]
- fn test_get_shell_info() {
- env::remove_var("STARSHIP_SHELL");
- let unknown_shell = get_shell_info();
- assert_eq!(UNKNOWN_SHELL, &unknown_shell.name);
-
- env::set_var("STARSHIP_SHELL", "fish");
-
- let fish_shell = get_shell_info();
- assert_eq!("fish", &fish_shell.name);
- }
-
- #[test]
#[cfg(not(windows))]
fn test_get_config_path() {
let config_path = get_config_path("bash");