aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJason Noble <github+jasonn@jasonnoble.org>2012-11-25 12:02:01 -0700
committerJason Noble <github+jasonn@jasonnoble.org>2012-11-25 12:02:01 -0700
commit064ae350dc8764dd10f2274a4293780b0210339c (patch)
tree1026724e424dd14ceda74a5e2630ffd26b081277 /guides/source
parentf9793a121e5653655a14ba9cf60dce480e42dbce (diff)
downloadrails-064ae350dc8764dd10f2274a4293780b0210339c.tar.gz
rails-064ae350dc8764dd10f2274a4293780b0210339c.tar.bz2
rails-064ae350dc8764dd10f2274a4293780b0210339c.zip
Revert "Updated with where functional/helper tests go"
This reverts commit c94cfdad6388dcdfaf4c10b9e8cee46baf2a7901. * This is the new 4.0 (master) directory structure
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 4273f2d95c..78af810af9 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1347,9 +1347,9 @@ This creates six files and one empty directory:
| -------------------------------------------- | ---------------------------------------- |
| app/controllers/comments_controller.rb | The Comments controller |
| app/views/comments/ | Views of the controller are stored here |
-| test/functional/comments_controller_test.rb | The test for the controller |
+| test/controllers/comments_controller_test.rb | The test for the controller |
| app/helpers/comments_helper.rb | A view helper file |
-| test/unit/helpers/comments_helper_test.rb | The test for the helper |
+| test/helpers/comments_helper_test.rb | The test for the helper |
| app/assets/javascripts/comment.js.coffee | CoffeeScript for the controller |
| app/assets/stylesheets/comment.css.scss | Cascading style sheet for the controller |