aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-07-08 14:57:44 -0700
committerZachary Scott <e@zzak.io>2014-07-08 14:57:44 -0700
commit7a3192e760e41a3f52418fb88841bbaa1c615a0e (patch)
tree61c665b9a6b42ab46acc392ff5007096a8740b6f /guides/source/testing.md
parent97d62a32f824ca54c6dee2033decb78f85217361 (diff)
parentda5ac718859fe7eac599574334431348fc3e4361 (diff)
downloadrails-7a3192e760e41a3f52418fb88841bbaa1c615a0e.tar.gz
rails-7a3192e760e41a3f52418fb88841bbaa1c615a0e.tar.bz2
rails-7a3192e760e41a3f52418fb88841bbaa1c615a0e.zip
Merge pull request #16097 from nishantmodak/correct_md
correct markdown usage [ci skip]
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 09833ed78c..561fe2cf70 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -144,7 +144,7 @@ In Rails, models tests are what you write to test your models.
For this guide we will be using Rails _scaffolding_. It will create the model, a migration, controller and views for the new resource in a single operation. It will also create a full test suite following Rails best practices. We will be using examples from this generated code and will be supplementing it with additional examples where necessary.
-NOTE: For more information on Rails <i>scaffolding</i>, refer to [Getting Started with Rails](getting_started.html)
+NOTE: For more information on Rails _scaffolding_, refer to [Getting Started with Rails](getting_started.html)
When you use `rails generate scaffold`, for a resource among other things it creates a test stub in the `test/models` folder: