Move around the tests for types

This commit is contained in:
Eryn Wells 2017-04-03 16:44:04 -04:00
parent 3cb1824a1b
commit 104b9b0864
3 changed files with 20 additions and 16 deletions

View file

@ -35,10 +35,20 @@ impl IsChar for Bool {
#[cfg(test)]
mod tests {
use super::Bool;
use types::value::{IsBool, IsChar};
use types::value::{IsBool, IsChar, Value};
#[test]
fn chars_are_bools() {
fn equal_bools_are_equal() {
assert_eq!(Bool(true), Bool(true));
assert_eq!(Bool(false), Bool(false));
assert_ne!(Bool(true), Bool(false));
assert_eq!(Bool(true).as_value(), Bool(true).as_value());
assert_ne!(Bool(true).as_value(), Bool(false).as_value());
}
#[test]
fn bools_are_bools() {
assert_eq!(Bool(false).is_bool(), true);
}