aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorArthur Nogueira Neves <github@arthurnn.com>2015-03-25 22:38:29 -0400
committerArthur Nogueira Neves <github@arthurnn.com>2015-03-25 22:38:29 -0400
commit8635706ba370327d2ce694e9879bc8d13a14baa8 (patch)
treed9de163a0b7124a4e6382ad765a5bc38eee3a3d5 /guides/source
parent348377da4d623a81b570b2bf46e6ef9e5ee4e12f (diff)
parent138180252d663082e981efdc52a3d481b02ea08f (diff)
downloadrails-8635706ba370327d2ce694e9879bc8d13a14baa8.tar.gz
rails-8635706ba370327d2ce694e9879bc8d13a14baa8.tar.bz2
rails-8635706ba370327d2ce694e9879bc8d13a14baa8.zip
Merge pull request #19521 from mudphone/test_fixture_docs
[skip ci] Minor edits for clarity in the test fixture guide.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 008a485720..fe5dd0b820 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -59,9 +59,9 @@ You can find comprehensive documentation in the [Fixtures API documentation](htt
#### What Are Fixtures?
-_Fixtures_ is a fancy word for sample data. Fixtures allow you to populate your testing database with predefined data before your tests run. Fixtures are database independent written in YAML. There is one file per model.
+_Fixtures_ is a fancy word for sample data. Fixtures allow you to populate your testing database with predefined data before your tests run. Fixtures are database independent and written in YAML. There is one file per model.
-You'll find fixtures under your `test/fixtures` directory. When you run `rails generate model` to create a new model fixture stubs will be automatically created and placed in this directory.
+You'll find fixtures under your `test/fixtures` directory. When you run `rails generate model` to create a new model, Rails automatically creates fixture stubs in this directory.
#### YAML