diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2014-11-10 12:44:12 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2014-11-30 10:26:13 +0000 |
commit | 9710d73260d29c8633e314360c4dca7485d142d0 (patch) | |
tree | d84dd4597e01a9a6b13437831739d398a47b0150 /guides/source | |
parent | b68b8cfccc1f0fc6c0aa1b27697e71d5abddd445 (diff) | |
download | rails-9710d73260d29c8633e314360c4dca7485d142d0.tar.gz rails-9710d73260d29c8633e314360c4dca7485d142d0.tar.bz2 rails-9710d73260d29c8633e314360c4dca7485d142d0.zip |
[Testing guide] Use "Fixtures API" instead of "fixture api".
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 b4c70dfa1d..ceb849f690 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -51,7 +51,7 @@ The `test_helper.rb` file holds the default configuration for your tests. For good tests, you'll need to give some thought to setting up test data. In Rails, you can handle this by defining and customizing fixtures. -You can find comprehensive documentation in the [fixture api documentation](http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html). +You can find comprehensive documentation in the [Fixtures API documentation](http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html). #### What Are Fixtures? |