From 6e71d20086e5f20d6227524049d6e0fc701d85d0 Mon Sep 17 00:00:00 2001 From: laboon Date: Thu, 12 May 2016 19:59:44 -0400 Subject: [PATCH] Add directions on running tests --- tests/tests1.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/tests1.rs b/tests/tests1.rs index 15f810a..e189f93 100644 --- a/tests/tests1.rs +++ b/tests/tests1.rs @@ -1,3 +1,7 @@ +// Tests are important to ensure that your code does what you think it should do. +// Tests can be run on this file with the following command: +// rustc --test tests1.rs + // This test has a problem with it -- make the test compile! Make the test // pass! Make the test fail! Scroll down for hints :)