summaryrefslogtreecommitdiff
path: root/rust/hello-world/tests/hello-world.rs
blob: c0d9536db5f8a995b3ad2c59a8f3325dac9861f5 (plain)
1
2
3
4
5
6
use hello_world;

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