From d6fc5af1dffcd45d8d00b3cf57a87ac5a21285c8 Mon Sep 17 00:00:00 2001 From: Zachary Scott Date: Mon, 22 Dec 2014 03:17:13 -0800 Subject: Better explain what `test_helper.rb` is designed for [ci skip] --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') 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 -- cgit v1.2.3