aboutsummaryrefslogtreecommitdiff
path: root/hello-world/tests/hello-world.rs
diff options
context:
space:
mode:
authorFederico I <git@federicoigne.com>2020-03-14 19:21:02 +0000
committerFederico Igne <git@federicoigne.com>2021-11-03 18:49:20 +0000
commitda0fec405edd592d9ae7c658cb80fdc652671c37 (patch)
tree00ce4204858d34f932e0cd81bebb33e4fbd421ee /hello-world/tests/hello-world.rs
parent629472a32c01f3972981f913b3585abcf8c4eb63 (diff)
downloadexercism-da0fec405edd592d9ae7c658cb80fdc652671c37.tar.gz
exercism-da0fec405edd592d9ae7c658cb80fdc652671c37.zip
[rust] Hello World
Diffstat (limited to 'hello-world/tests/hello-world.rs')
-rw-r--r--hello-world/tests/hello-world.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/hello-world/tests/hello-world.rs b/hello-world/tests/hello-world.rs
new file mode 100644
index 0000000..c0d9536
--- /dev/null
+++ b/hello-world/tests/hello-world.rs
@@ -0,0 +1,6 @@
1use hello_world;
2
3#[test]
4fn test_hello_world() {
5 assert_eq!("Hello, World!", hello_world::hello());
6}