aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorJason Noble <github+jasonn@jasonnoble.org>2012-11-24 22:41:30 -0700
committerJason Noble <github+jasonn@jasonnoble.org>2012-11-24 22:41:30 -0700
commitc94cfdad6388dcdfaf4c10b9e8cee46baf2a7901 (patch)
tree3d805549f119b87c25272da710f1d4a15b2d5202 /guides/source/getting_started.md
parent9314867b1fefffa4c5a1a876886fde6655bd2dae (diff)
downloadrails-c94cfdad6388dcdfaf4c10b9e8cee46baf2a7901.tar.gz
rails-c94cfdad6388dcdfaf4c10b9e8cee46baf2a7901.tar.bz2
rails-c94cfdad6388dcdfaf4c10b9e8cee46baf2a7901.zip
Updated with where functional/helper tests go
Diffstat (limited to 'guides/source/getting_started.md')
-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 c517d23e40..76389cc33a 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/controllers/comments_controller_test.rb | The test for the controller |
+| test/functional/comments_controller_test.rb | The test for the controller |
| app/helpers/comments_helper.rb | A view helper file |
-| test/helpers/comments_helper_test.rb | The test for the helper |
+| test/unit/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 |