chore: rename project and lib crate

This commit is contained in:
2025-11-15 16:51:06 +01:00
parent 07a2913c76
commit c6018d7199
25 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
#[cfg(test)]
mod tests {
use crate::*;
#[test]
pub fn die_roll_should_always_stay_inside_range() {
let die = Die::new(6);
for _ in 1..=10000 {
assert!(die.roll() < 6);
}
}
}