diff options
author | Zachary Scott <e@zzak.io> | 2014-12-30 11:13:20 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-30 11:13:20 -0800 |
commit | 996e646bd8cff3bcf2b13863439f48d3e744cdae (patch) | |
tree | 3a072409ad20fae6bfc39487f4db6b6323a490c4 /guides | |
parent | 5c35f704d1ceca98c39b4ad3b08fee432e943afd (diff) | |
download | rails-996e646bd8cff3bcf2b13863439f48d3e744cdae.tar.gz rails-996e646bd8cff3bcf2b13863439f48d3e744cdae.tar.bz2 rails-996e646bd8cff3bcf2b13863439f48d3e744cdae.zip |
The Guide to Testing Rails Applications is published! :tada: :tada: [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/documents.yaml | 3 | ||||
-rw-r--r-- | guides/source/getting_started.md | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/guides/source/documents.yaml b/guides/source/documents.yaml index 8dd310d007..eba5086caf 100644 --- a/guides/source/documents.yaml +++ b/guides/source/documents.yaml @@ -86,8 +86,7 @@ - name: Testing Rails Applications url: testing.html - work_in_progress: true - description: This is a rather comprehensive guide to doing both unit and functional tests in Rails. It covers everything from 'What is a test?' to the testing APIs. Enjoy. + description: This is a rather comprehensive guide to the various testing facilities in Rails. It covers everything from 'What is a test?' to the testing APIs. Enjoy. - name: Securing Rails Applications url: security.html diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 36947d086a..ff6e0db480 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -2034,9 +2034,14 @@ What's Next? ------------ Now that you've seen your first Rails application, you should feel free to -update it and experiment on your own. But you don't have to do everything -without help. As you need assistance getting up and running with Rails, feel -free to consult these support resources: +update it and experiment on your own. + +We recommend next that you read [A Guide to Testing Rails Applications](testing.html), +for a deep dive into Rails testing facilities and approaches. + +Remember you don't have to do everything without help. As you need assistance +getting up and running with Rails, feel free to consult these support +resources: * The [Ruby on Rails Guides](index.html) * The [Ruby on Rails Tutorial](http://railstutorial.org/book) |