86dccc4ca7
a description starts with the filename, has an optional description and ends with help information
33 lines
712 B
Rust
33 lines
712 B
Rust
// result1.rs
|
|
//
|
|
// Make this test pass!
|
|
//
|
|
// If you need help, open the corresponding README.md or run: rustlings hint result1
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
struct PositiveNonzeroInteger(u64);
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
enum CreationError {
|
|
Negative,
|
|
Zero,
|
|
}
|
|
|
|
impl PositiveNonzeroInteger {
|
|
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
|
|
Ok(PositiveNonzeroInteger(value as u64))
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_creation() {
|
|
assert!(PositiveNonzeroInteger::new(10).is_ok());
|
|
assert_eq!(
|
|
Err(CreationError::Negative),
|
|
PositiveNonzeroInteger::new(-10)
|
|
);
|
|
assert_eq!(Err(CreationError::Zero), PositiveNonzeroInteger::new(0));
|
|
}
|