diff options
author | colleenmcguckin <colleenmcguckin@gmail.com> | 2016-10-31 12:18:20 -0700 |
---|---|---|
committer | colleenmcguckin <colleenmcguckin@gmail.com> | 2016-10-31 12:18:20 -0700 |
commit | 700623936e84eb35a7d27c1b4d72c09ae717bdfe (patch) | |
tree | 7fc41d266b3b3a22966abbd6f832e9f0a8a1b293 /guides | |
parent | 8931916f4a1c1d8e70c06063ba63928c5c7eab1e (diff) | |
download | rails-700623936e84eb35a7d27c1b4d72c09ae717bdfe.tar.gz rails-700623936e84eb35a7d27c1b4d72c09ae717bdfe.tar.bz2 rails-700623936e84eb35a7d27c1b4d72c09ae717bdfe.zip |
fix typo in Rails Test Runner section
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 0ac5121b12..bc1f78fb2a 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -414,7 +414,7 @@ You can also run an entire directory of tests by providing the path to the direc $ bin/rails test test/controllers # run all tests from specific directory ``` -The test runner provides lot of other features too like failing fast, deferring test output +The test runner also provides a lot of other features like failing fast, deferring test output at the end of test run and so on. Check the documentation of the test runner as follows: ```bash @@ -859,7 +859,7 @@ You also have access to three instance variables in your functional tests, after class ArticlesControllerTest < ActionDispatch::IntegrationTest test "should get index" do get articles_url - + assert_equal "index", @controller.action_name assert_equal "application/x-www-form-urlencoded", @request.media_type assert_match "Articles", @response.body |