aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-22 03:17:13 -0800
committerZachary Scott <e@zzak.io>2014-12-22 03:17:13 -0800
commitd6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8 (patch)
tree22865d255fc778faf9d58c0a35a3b3a336811592
parenta407bb245b0f5888c93dd98265e0f3b2cb35ef20 (diff)
downloadrails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.tar.gz
rails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.tar.bz2
rails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.zip
Better explain what `test_helper.rb` is designed for [ci skip]
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index b22da70031..3c15f428a2 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -175,7 +175,7 @@ A line by line examination of this file will help get you oriented to Rails test
require 'test_helper'
```
-As you know by now, `test_helper.rb` specifies the default configuration to run our tests. This is included with all the tests, so any methods added to this file are available to all your tests.
+By requiring this file, `test_helper.rb` the default configuration to run our tests is loaded. We will include this with all the tests we write, so any methods added to this file are available to all your tests.
```ruby
class ArticleTest < ActiveSupport::TestCase