fixed inconsistent `require 'test_helper'` in testing guide

This commit is contained in:
Joey Schoblaska 2012-12-30 16:47:19 -06:00
parent 9a497582e6
commit 46af32aa50
1 changed files with 1 additions and 1 deletions

View File

@ -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