exercism/rust/hello-world/tests/hello-world.rs
anthony.cicchetti 5f9cd49d7a initial commit
2017-04-25 15:51:48 -04:00

16 lines
322 B
Rust

extern crate hello_world;
#[test]
fn test_no_name() {
assert_eq!("Hello, World!", hello_world::hello(None));
}
#[test]
fn test_sample_name() {
assert_eq!("Hello, Alice!", hello_world::hello(Some("Alice")));
}
#[test]
fn test_other_same_name() {
assert_eq!("Hello, Bob!", hello_world::hello(Some("Bob")));
}