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

5 lines
84 B
Rust
Raw Normal View History

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