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

5 lines
89 B
Rust

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