7 lines
116 B
Rust
7 lines
116 B
Rust
|
extern crate hello_world;
|
||
|
|
||
|
#[test]
|
||
|
fn test_hello_world() {
|
||
|
assert_eq!("Hello, World!", hello_world::hello());
|
||
|
}
|