aboutsummaryrefslogtreecommitdiff
path: root/hello-world/tests/hello-world.rs
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2020-12-26 17:48:38 +0000
committerFederico Igne <git@federicoigne.com>2021-11-03 18:55:08 +0000
commit02481656966b0a8dfc95cf3c22bcc049660ff7d4 (patch)
tree8e39798fcaf27931d91c2088423fd4e97adcfc2d /hello-world/tests/hello-world.rs
parent4e2052c4d792540c2f742b2c2a081b11117ed41d (diff)
downloadexercism-02481656966b0a8dfc95cf3c22bcc049660ff7d4.tar.gz
exercism-02481656966b0a8dfc95cf3c22bcc049660ff7d4.zip
Move Rust exercises in a subdirectory
Diffstat (limited to 'hello-world/tests/hello-world.rs')
-rw-r--r--hello-world/tests/hello-world.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/hello-world/tests/hello-world.rs b/hello-world/tests/hello-world.rs
deleted file mode 100644
index c0d9536..0000000
--- a/hello-world/tests/hello-world.rs
+++ /dev/null
@@ -1,6 +0,0 @@
1use hello_world;
2
3#[test]
4fn test_hello_world() {
5 assert_eq!("Hello, World!", hello_world::hello());
6}