From 46af32aa50cb9fda2cbefb124ef0adf3116137ec Mon Sep 17 00:00:00 2001 From: Joey Schoblaska Date: Sun, 30 Dec 2012 16:47:19 -0600 Subject: [PATCH] fixed inconsistent `require 'test_helper'` in testing guide --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/testing.md b/guides/source/testing.md index f178ca87e9..7747318d32 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -830,7 +830,7 @@ Above, the `setup` method is called before each test and so `@post` is available Let's see the earlier example by specifying `setup` callback by specifying a method name as a symbol: ```ruby -require '../test_helper' +require 'test_helper' class PostsControllerTest < ActionController::TestCase