use crate::define_tool;
define_tool!(LYNIS, {
command: "lynis",
macos: { brew: "lynis" },
linux: { uniform: "lynis" },
bsd: { pkg: "lynis" },
});
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn lynis_registration_shape() {
assert_eq!(LYNIS.command, "lynis");
let mac = LYNIS.macos.expect("must support macOS");
assert_eq!(mac.brew, Some("lynis"));
}
}