aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-12-29 13:15:32 -0800
committerVijay Dev <vijaydev.cse@gmail.com>2012-12-29 13:15:32 -0800
commit2e92a23bdf9fa84ba5f29dd70cf1bb7419e8bfbd (patch)
treef67309609bb1aad37b4aeca938dc77f734364fbb /guides
parentfba97c9620e709f0449ea9f3240b9e5174f72e1e (diff)
parent95343f64c1a2c0ac31ef83282dda2dfd77ace789 (diff)
downloadrails-2e92a23bdf9fa84ba5f29dd70cf1bb7419e8bfbd.tar.gz
rails-2e92a23bdf9fa84ba5f29dd70cf1bb7419e8bfbd.tar.bz2
rails-2e92a23bdf9fa84ba5f29dd70cf1bb7419e8bfbd.zip
Merge pull request #8647 from nishantmodak/patch-2
Update documentation for yml usage
Diffstat (limited to 'guides')
-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 a9bce04522..f178ca87e9 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -77,7 +77,7 @@ steve:
profession: guy with keyboard
```
-Each fixture is given a name followed by an indented list of colon-separated key/value pairs. Records are typically separated by a blank space. You can place comments in a fixture file by using the # character in the first column.
+Each fixture is given a name followed by an indented list of colon-separated key/value pairs. Records are typically separated by a blank space. You can place comments in a fixture file by using the # character in the first column. Keys which resemble YAML keywords such as 'yes' and 'no' are quoted so that the YAML Parser correctly interprets them.
#### ERB'in It Up