aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorKyle Oba <koba@mudphone.com>2015-03-25 11:53:25 -1000
committerKyle Oba <koba@mudphone.com>2015-03-25 16:04:57 -1000
commit138180252d663082e981efdc52a3d481b02ea08f (patch)
treed9de163a0b7124a4e6382ad765a5bc38eee3a3d5 /guides/source
parent348377da4d623a81b570b2bf46e6ef9e5ee4e12f (diff)
downloadrails-138180252d663082e981efdc52a3d481b02ea08f.tar.gz
rails-138180252d663082e981efdc52a3d481b02ea08f.tar.bz2
rails-138180252d663082e981efdc52a3d481b02ea08f.zip
[skip ci] Minor edits for clarity, to make smooth, & separate clauses.
* Add conjunction for clarity. * Add comma between independent clauses: create command, and generation of fixtures.
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