exercism.org/rust/hello-world/tests/hello-world.rs

5 lines
84 B
Rust

#[test]
fn hello_world() {
assert_eq!("Hello, World!", hello_world::hello());
}