diff options
author | Zachary Scott <e@zzak.io> | 2014-12-22 10:03:03 -0500 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-22 10:03:03 -0500 |
commit | 2526b95f202cfc786d3b93914c52264db12e5f0a (patch) | |
tree | b8fd3ec0c8b22274b3c2225f9ac83dcacef60a5e | |
parent | a6d9049dc00fe79bb07b53d4cfa972bc7ff15b6c (diff) | |
download | rails-2526b95f202cfc786d3b93914c52264db12e5f0a.tar.gz rails-2526b95f202cfc786d3b93914c52264db12e5f0a.tar.bz2 rails-2526b95f202cfc786d3b93914c52264db12e5f0a.zip |
Remove this line since we are using Rake to run our tests [ci skip]
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index b99d37a10c..802268d15e 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -258,7 +258,7 @@ Finished tests in 0.009064s, 110.3266 tests/s, 110.3266 assertions/s. 1 tests, 1 assertions, 0 failures, 0 errors, 0 skips ``` -This will run all test methods from the test case. Note that `test_helper.rb` is in the `test` directory, hence this directory needs to be added to the load path using the `-I` switch. +This will run all test methods from the test case. The `.` (dot) above indicates a passing test. When a test fails you see an `F`; when a test throws an error you see an `E` in its place. The last line of the output is the summary. |