diff options
author | Kir Shatrov <shatrov@me.com> | 2015-03-31 14:38:18 +0300 |
---|---|---|
committer | Kir Shatrov <shatrov@me.com> | 2015-03-31 14:38:28 +0300 |
commit | afbd6559f98b2166ba4c1f3dec52a33f10c2a827 (patch) | |
tree | 3d61f6034a4a109166183c82c16f3f13aa6b8aa7 /guides/source | |
parent | 851621bf19f21eaab4a3a8476cd19b5fb1fd7d93 (diff) | |
download | rails-afbd6559f98b2166ba4c1f3dec52a33f10c2a827.tar.gz rails-afbd6559f98b2166ba4c1f3dec52a33f10c2a827.tar.bz2 rails-afbd6559f98b2166ba4c1f3dec52a33f10c2a827.zip |
No need to mention unit tests in testing guide anymore
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 220e61e088..f12daf0dbc 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -158,8 +158,6 @@ We will cover each of types Rails tests listed above in this guide. Model Testing ------------------------ -In Rails, unit tests are what you write to test your models. - For this guide we will be using the application we built in the [Getting Started with Rails](getting_started.html) guide. If you remember when you used the `rails generate scaffold` command from earlier. We created our first resource among other things it created a test stub in the `test/models` directory: |