use crate::define_tool;
define_tool!(INFRACOST, {
command: "infracost",
macos: { brew: "infracost" },
linux: { uniform: "infracost" },
windows: { winget: "Infracost.Infracost" },
bsd: { pkg: "infracost" },
});
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn infracost_registration_shape() {
assert_eq!(INFRACOST.command, "infracost");
let mac = INFRACOST.macos.expect("must support macOS");
assert_eq!(mac.brew, Some("infracost"));
let win = INFRACOST.windows.expect("must support Windows");
assert_eq!(win.winget, Some("Infracost.Infracost"));
}
}