use crate::define_tool;
define_tool!(UP, {
command: "up",
macos: { brew: "upbound/tap/up" },
linux: { brew: "upbound/tap/up" },
bsd: { pkg: "up" },
});
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn up_registration_shape() {
assert_eq!(UP.command, "up");
let mac = UP.macos.expect("must support macOS");
assert_eq!(mac.brew, Some("upbound/tap/up"));
}
}