1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-10-12 13:35:20 -04:00

errors1 solution

This commit is contained in:
mo8it 2024-06-26 15:06:29 +02:00
commit 097f3c74ea
3 changed files with 52 additions and 18 deletions
solutions/13_error_handling

View file

@ -1 +1,35 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
fn generate_nametag_text(name: String) -> Result<String, String> {
// ^^^^^^ ^^^^^^
if name.is_empty() {
// `Err(String)` instead of `None`.
Err("Empty names aren't allowed".to_string())
} else {
// `Ok` instead of `Some`.
Ok(format!("Hi! My name is {name}"))
}
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn generates_nametag_text_for_a_nonempty_name() {
assert_eq!(
generate_nametag_text("Beyoncé".to_string()).as_deref(),
Ok("Hi! My name is Beyoncé"),
);
}
#[test]
fn explains_why_generating_nametag_text_fails() {
assert_eq!(
generate_nametag_text(String::new()).as_deref(),
Err("`name` was empty; it must be nonempty."),
);
}
}