diff options
author | Zachary Scott <e@zzak.io> | 2014-12-22 03:17:13 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-22 03:17:13 -0800 |
commit | d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8 (patch) | |
tree | 22865d255fc778faf9d58c0a35a3b3a336811592 /guides/source | |
parent | a407bb245b0f5888c93dd98265e0f3b2cb35ef20 (diff) | |
download | rails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.tar.gz rails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.tar.bz2 rails-d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8.zip |
Better explain what `test_helper.rb` is designed for [ci skip]
Diffstat (limited to 'guides/source')
-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 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 |