#[test]
fn shell_warning_none_for_safe_binary() {
let safe = ["wrangler", "npm", "cargo", "docker", "kubectl"];
for name in &safe {
assert!(
!["bash", "sh", "zsh", "fish", "dash", "python", "node"].contains(name),
"Fix: {name} is not a shell interpreter"
);
}
}