1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
use linescroll::*;
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_should_clear() {
let settings = Settings {
combine: false,
speedonly: false,
print_every: 3,
limit: 3,
filenames: false,
noclear: false,
nofollow: false,
raw: false,
exit: false,
axislimit: true,
};
assert_eq!(should_clear(&settings), true);
}
#[test]
fn test_should_not_clear() {
let settings = Settings {
combine: false,
speedonly: false,
print_every: 3,
limit: 3,
filenames: false,
noclear: true,
nofollow: false,
raw: false,
exit: false,
axislimit: true,
};
assert_eq!(should_clear(&settings), false);
}
#[test]
fn test_should_print() {
let settings = Settings {
combine: false,
speedonly: false,
print_every: 3,
limit: 3,
filenames: false,
noclear: true,
nofollow: false,
raw: false,
exit: false,
axislimit: true,
};
assert_eq!(should_print(&settings, 0), false);
assert_eq!(should_print(&settings, 1), false);
assert_eq!(should_print(&settings, 2), false);
assert_eq!(should_print(&settings, 3), true);
assert_eq!(should_print(&settings, 4), false);
}
}
|