aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-29 17:57:47 -0800
committerZachary Scott <e@zzak.io>2014-12-29 17:57:47 -0800
commit82b75eda70f8c30f7c418e7350532a3a0ed2a8c3 (patch)
tree24aa892160215c4a7bc6ab7ddd4900a98a1a4f6e /guides/source/testing.md
parent241ccaef88e494657ff4121ef31d73160237fd6c (diff)
downloadrails-82b75eda70f8c30f7c418e7350532a3a0ed2a8c3.tar.gz
rails-82b75eda70f8c30f7c418e7350532a3a0ed2a8c3.tar.bz2
rails-82b75eda70f8c30f7c418e7350532a3a0ed2a8c3.zip
Remove redundant information about Minitest, which is already covered when
assertions are introduced. [ci skip]
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 144a92df3e..cd881cf998 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -816,14 +816,6 @@ project is created.
| `rake test:units` | Runs all the unit tests from `test/models`, `test/helpers`, and `test/unit` |
| `rake test:db` | Runs all tests in the `test` directory and resets the db |
-
-A Brief Note About Minitest
------------------------------
-
-Ruby ships with a vast Standard Library for all common use-cases including testing. Since version 1.9, Ruby provides `Minitest`, a framework for testing. All the basic assertions such as `assert_equal` discussed above are actually defined in `Minitest::Assertions`. The classes `ActiveSupport::TestCase`, `ActionController::TestCase`, `ActionMailer::TestCase`, `ActionView::TestCase` and `ActionDispatch::IntegrationTest` - which we have been inheriting in our test classes - include `Minitest::Assertions`, allowing us to use all of the basic assertions in our tests.
-
-NOTE: For more information on `Minitest`, refer to [Minitest](http://ruby-doc.org/stdlib-2.1.0/libdoc/minitest/rdoc/MiniTest.html)
-
Setup and Teardown
------------------