aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-08-10 21:35:52 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-08-10 21:35:52 -0300
commit9b3e5b0d029fe3a6bf3d090f60ee1f00134f5485 (patch)
tree27a8dd7e3b742afea47fb61ad7dc1584dfa4559f
parent9e66b381113a797bd37665349bb51d8b540f0d37 (diff)
parentab360318cfdb9beb6ebfd98e470e6a5588e074b8 (diff)
downloadrails-9b3e5b0d029fe3a6bf3d090f60ee1f00134f5485.tar.gz
rails-9b3e5b0d029fe3a6bf3d090f60ee1f00134f5485.tar.bz2
rails-9b3e5b0d029fe3a6bf3d090f60ee1f00134f5485.zip
Merge pull request #21184 from brooksreese/touch_on_unit_testing
[ci skip] Add link to testing guide
-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.