From 9710d73260d29c8633e314360c4dca7485d142d0 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Mon, 10 Nov 2014 12:44:12 +0530 Subject: [PATCH] [Testing guide] Use "Fixtures API" instead of "fixture api". --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- GitLab