aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-22 11:11:12 -0500
committerZachary Scott <e@zzak.io>2014-12-22 11:11:12 -0500
commit3cc9359c2d1158722c29504a06da1805f6766243 (patch)
tree9673aa6ab6fed68a9fcffcdbd9239b8462fd2ffb /guides
parentcd01f9f9c5df06f74e1acdb55f0c6e5110ea0daf (diff)
downloadrails-3cc9359c2d1158722c29504a06da1805f6766243.tar.gz
rails-3cc9359c2d1158722c29504a06da1805f6766243.tar.bz2
rails-3cc9359c2d1158722c29504a06da1805f6766243.zip
Remove this section, it adds no real value [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 65c88303de..061d5d71e1 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -369,10 +369,6 @@ behavior:
$ BACKTRACE=1 bin/rake test test/models/article_test.rb
```
-### What to Include in Your Unit Tests
-
-Ideally, you would like to include a test for everything which could possibly break. It's a good practice to have at least one test for each of your validations and at least one test for every method in your model.
-
### Available Assertions
By now you've caught a glimpse of some of the assertions that are available. Assertions are the worker bees of testing. They are the ones that actually perform the checks to ensure that things are going as planned.