Add test exhibiting SIGBUS on my machine

This commit is contained in:
Joe Wilm 2016-10-16 11:16:29 -07:00
parent d4c1d51e36
commit ea07f03ac9
1 changed files with 13 additions and 0 deletions

View File

@ -483,4 +483,17 @@ mod tests {
mode: mode::NONE,
mods: mods::SUPER | mods::ALT
}
test_process_binding! {
name: process_binding_with_mods_none,
binding: Binding { mods: mods::NONE, action: Action::Char('v'), mode: mode::ANY, notmode: mode::NONE },
expect: Some(String::from("v")),
mode: mode::NONE,
mods: mods::NONE
}
#[test]
fn print_v_bindings() {
println!("{:#?}", super::V_BINDINGS);
}
}