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

7 lines
116 B
Rust
Raw Normal View History

2018-09-16 18:51:58 -04:00
extern crate hello_world;
#[test]
fn test_hello_world() {
assert_eq!("Hello, World!", hello_world::hello());
}