Add test to ensure correct type/value is returned.
This commit is contained in:
parent
aef1bd9e79
commit
f9b42e6846
|
@ -3,6 +3,7 @@
|
||||||
// It also helps with renaming imports.
|
// It also helps with renaming imports.
|
||||||
//
|
//
|
||||||
// The goal is to make sure that the division does not fail to compile
|
// The goal is to make sure that the division does not fail to compile
|
||||||
|
// and returns the proper type.
|
||||||
|
|
||||||
// I AM NOT DONE
|
// I AM NOT DONE
|
||||||
|
|
||||||
|
@ -17,3 +18,13 @@ fn main() {
|
||||||
let values = [3.5, 0.3, 13.0, 11.7];
|
let values = [3.5, 0.3, 13.0, 11.7];
|
||||||
println!("{}", average(&values));
|
println!("{}", average(&values));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn returns_proper_type_and_value() {
|
||||||
|
assert_eq!(average(&[3.5, 0.3, 13.0, 11.7]), 7.125);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue