aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2014-06-02 10:38:03 -0500
committerschneems <richard.schneeman@gmail.com>2014-06-02 10:38:03 -0500
commita93f385c2b675e003afb98a57a9bd0f6377667cc (patch)
treec3783a69eb7465475fe5c68424703867b3980d7b /guides
parent654b331643ca80d581c899d485369fbb5757fb94 (diff)
downloadrails-a93f385c2b675e003afb98a57a9bd0f6377667cc.tar.gz
rails-a93f385c2b675e003afb98a57a9bd0f6377667cc.tar.bz2
rails-a93f385c2b675e003afb98a57a9bd0f6377667cc.zip
[ci skip] add fixture docs link to guides
The fixtures API docs are really comprehensive. We should either be driving people there, or perhaps making fixtures its own guide.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index bac4b63c75..9468f03442 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -49,7 +49,9 @@ The `test_helper.rb` file holds the default configuration for your tests.
### The Low-Down on Fixtures
-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.
+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).
#### What Are Fixtures?