aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJonas Baumann <jone@jone.ch>2014-07-16 12:00:58 +0200
committerJonas Baumann <jone@jone.ch>2014-07-16 12:34:03 +0200
commite96e840ede2a7400f3acc73ab819ff91de068a1d (patch)
tree55a1d8ef29dad2e3926c8ab89f53e5fa13bad4b0 /guides/source
parentcbc0c184614b85d8d6b06da93cbdabb8b48fa6a1 (diff)
downloadrails-e96e840ede2a7400f3acc73ab819ff91de068a1d.tar.gz
rails-e96e840ede2a7400f3acc73ab819ff91de068a1d.tar.bz2
rails-e96e840ede2a7400f3acc73ab819ff91de068a1d.zip
link minitest assertions documentation.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index e780ad2c89..b2da25b19f 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -364,8 +364,13 @@ Ideally, you would like to include a test for everything which could possibly br
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.
-There are a bunch of different types of assertions you can use.
-Here's an extract of the assertions you can use with `minitest`, the default testing library used by Rails. The `[msg]` parameter is an optional string message you can specify to make your test failure messages clearer. It's not required.
+There are a bunch of different types of assertions you can use. Here's an
+extract of the
+[assertions](http://docs.seattlerb.org/minitest/Minitest/Assertions.html) you
+can use with [minitest](https://github.com/seattlerb/minitest), the default
+testing library used by Rails. The `[msg]` parameter is an optional string
+message you can specify to make your test failure messages clearer. It's not
+required.
| Assertion | Purpose |
| ---------------------------------------------------------------- | ------- |