Add command parser test for polarity command

This commit is contained in:
atse 2024-10-07 09:49:08 +08:00 committed by sb10q
parent d517087e10
commit fcb5cf1d4e
1 changed files with 9 additions and 0 deletions

View File

@ -694,6 +694,15 @@ mod test {
}));
}
#[test]
fn parse_pwm_polarity() {
let command = Command::parse(b"pwm 0 polarity reversed");
assert_eq!(command, Ok(Command::PwmPolarity {
channel: 0,
polarity: Polarity::Reversed,
}));
}
#[test]
fn parse_pwm_pid() {
let command = Command::parse(b"pwm 0 pid");