mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-02 00:13:30 +02:00
feat(iterators4): add factorial of zero test
This commit is contained in:
committed by
mokou
co-authored by
mokou
parent
3c63ef0668
commit
251d0dda34
@@ -18,6 +18,11 @@ pub fn factorial(num: u64) -> u64 {
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn factorial_of_0() {
|
||||
assert_eq!(1, factorial(0));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn factorial_of_1() {
|
||||
assert_eq!(1, factorial(1));
|
||||
|
||||
Reference in New Issue
Block a user