Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created August 15, 2023 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YonatanKra/ac1ffa1782be979499f22f6656f416cd to your computer and use it in GitHub Desktop.
Save YonatanKra/ac1ffa1782be979499f22f6656f416cd to your computer and use it in GitHub Desktop.
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_greet() {
assert_eq!(greet("Johnny"), "Hello, Johnny! You've been greeted from Rust!");
}
#[test]
fn test_greet_badly() {
assert_eq!(greet("Johnny"), "Hello, Bonny! You've been greeted from Rust!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment