diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2014-11-10 13:45:45 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2014-11-10 13:45:45 +0530 |
commit | 9109365ab9e07a893b68c7d208591a083871a4e8 (patch) | |
tree | 4c6975a7b6e0e205088aa01b15ce8f3c5505319c /guides/source | |
parent | aa9d1332b20305dd860b21a7ada06c5252bebad5 (diff) | |
download | rails-9109365ab9e07a893b68c7d208591a083871a4e8.tar.gz rails-9109365ab9e07a893b68c7d208591a083871a4e8.tar.bz2 rails-9109365ab9e07a893b68c7d208591a083871a4e8.zip |
[Testing guide] Using "Fixtures API" consistently
- In guides, "API" is used consistently instead of "api".
- Reason behind replacing "fixtures API" to "Fixtures API" is because
here we are referring to the concept of "fixtures". In other places in
the guide "fixture" OR "fixtures" is referred to the single or
multiple instances of test data.
- This is also followup of https://github.com/rails/docrails/commit/aa9d1332b20305dd860b21a7ada06c5252bebad5#commitcomment-8497376.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index d9cacf317a..6678db21f8 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -100,7 +100,7 @@ Note: For associations to reference one another by name, you cannot specify the attribute on the fixtures. Rails will auto assign a primary key to be consistent between runs. If you manually specify an `id:` attribute, this behavior will not work. For more information on this association behavior please read the - [fixture api documentation](http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html). + [Fixtures API documentation](http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html). #### ERB'in It Up |