aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/command_line.md
diff options
context:
space:
mode:
authorBrooks Reese <brooksreese@gmail.com>2015-08-10 12:34:14 -0500
committerBrooks Reese <brooksreese@gmail.com>2015-08-10 12:34:14 -0500
commitab360318cfdb9beb6ebfd98e470e6a5588e074b8 (patch)
treea62cf1bf307cfaff796b73d7530e6d48e7bbaca7 /guides/source/command_line.md
parent942f41263152277dd5d23744a97a67e8c1a8d3d4 (diff)
downloadrails-ab360318cfdb9beb6ebfd98e470e6a5588e074b8.tar.gz
rails-ab360318cfdb9beb6ebfd98e470e6a5588e074b8.tar.bz2
rails-ab360318cfdb9beb6ebfd98e470e6a5588e074b8.zip
[ci skip] Add link to testing guide
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r--guides/source/command_line.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index 0f5a9e4e39..cd265331d6 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -260,7 +260,13 @@ $ bin/rake db:migrate
== CreateHighScores: migrated (0.0019s) ======================================
```
-INFO: Let's talk about unit tests. Unit tests are code that tests and makes assertions about code. In unit testing, we take a little part of code, say a method of a model, and test its inputs and outputs. Unit tests are your friend. The sooner you make peace with the fact that your quality of life will drastically increase when you unit test your code, the better. Seriously. We'll make one in a moment.
+INFO: Let's talk about unit tests. Unit tests are code that tests and makes assertions
+about code. In unit testing, we take a little part of code, say a method of a model,
+and test its inputs and outputs. Unit tests are your friend. The sooner you make
+peace with the fact that your quality of life will drastically increase when you unit
+test your code, the better. Seriously. Please visit
+[the testing guide](http://guides.rubyonrails.org/testing.html) for an in-depth
+look at unit testing.
Let's see the interface Rails created for us.