Consolidate some tests in bool and char

This commit is contained in:
Eryn Wells 2017-04-09 15:55:49 -07:00
parent 6ae557d837
commit 0d3021fb74
2 changed files with 2 additions and 10 deletions

View file

@ -46,10 +46,6 @@ mod tests {
fn bools_are_bools() {
assert_eq!(Bool(false).is_bool(), true);
assert_eq!(Bool(false).is_char(), false);
}
#[test]
fn bools_are_not_chars() {
assert_eq!(Bool(false).is_char(), false);
assert_eq!(Bool(false).is_number(), false);
}
}