rails--rails/guides/source
Leandro Facchinetti dcc532d2fb Update Minitest references in Testing Guide
The Guide references `test/unit`, which has been replaced by `Minitest` in
all versions of Ruby supported by Rails. The following updates were
performed:

* The superclass of `ActiveSupport::TestCase` is no longer
  `MiniTest::Unit::TestCase`, but `Minitest::Test` [1].

* The preferred spelling is `Minitest`, not `MiniTest` [2].

* For a method to be a test in Minitest, its name must start with `test_`,
  not only `test` [3].

* Explanations about `test/unit` in Ruby 1.8 were removed in favor of more
  up-to-date information on `Minitest`.

[1]: 6c2b569660/activesupport/lib/active_support/test_case.rb (L18)
[2]: d5d43cef9a/lib/minitest.rb (L9)
[3]: d5d43cef9a/lib/minitest/test.rb (L62)
2014-05-30 09:37:41 -03:00
..
kindle
2_2_release_notes.md
2_3_release_notes.md Guides: output valid HTML5 2014-05-05 17:42:04 -04:00
3_0_release_notes.md Add missing period from 4b802bc [ci skip] 2014-05-29 13:17:28 -07:00
3_1_release_notes.md
3_2_release_notes.md [ci skip] Use plain underscore instead of "\_". 2014-04-13 23:56:59 +08:00
4_0_release_notes.md
4_1_release_notes.md
_license.html.erb [ci skip] Update guides license to CC BY-SA 4.0 International. 2014-05-02 18:49:37 +08:00
_welcome.html.erb Update links to new rails version in guides [ci skip] 2014-05-07 10:53:33 +02:00
action_controller_overview.md "subhash" --> "sub-hash" 2014-04-19 04:03:43 +05:30
action_mailer_basics.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
action_view_overview.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
active_model_basics.md
active_record_basics.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
active_record_callbacks.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
active_record_postgresql.md [ci skip] Make last note show up in postgresql guide. 2014-05-29 17:23:59 +08:00
active_record_querying.md Improve readability of Explain Queries table in guides [ci skip] 2014-05-24 18:16:07 -04:00
active_record_validations.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
active_support_core_extensions.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
active_support_instrumentation.md Fix typo guides/source/active_support_instrumentation.md 2014-05-22 00:00:55 +04:00
api_documentation_guidelines.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
asset_pipeline.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
association_basics.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
caching_with_rails.md remove trailing whitespace. [ci skip] 2014-05-17 00:24:50 +02:00
command_line.md Update all Rails 4.1.0 references in guides to 4.1.1 [ci skip] 2014-05-24 18:51:23 -04:00
configuring.md Merge pull request #13988 from zzak/guides_configuring_reverse_proxy 2014-05-24 08:55:07 -07:00
contributing_to_ruby_on_rails.md [ci skip] Add benchmark your code section to contributing to ruby on rails guide. 2014-05-27 05:14:12 +08:00
credits.html.erb
debugging_rails_applications.md Update all Rails 4.1.0 references in guides to 4.1.1 [ci skip] 2014-05-24 18:51:23 -04:00
development_dependencies_install.md Reorganize ActiveRecord tasks [Arun Agrawal & Abd ar-Rahman Hamidi] 2014-05-16 23:09:05 +02:00
documents.yaml Upgrading Ruby on Rails guide is no longer WIP [ci skip] 2014-05-28 10:44:35 -07:00
engines.md Generated engines don't include bin/rake, fixes #15409 [ci skip] 2014-05-29 13:49:29 -07:00
form_helpers.md Fix indentation from 1b4b26f [ci skip] 2014-05-28 15:56:38 -07:00
generators.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
getting_started.md `bin/setup` script to bootstrap applications. 2014-05-30 11:15:56 +02:00
i18n.md Include label value in i18n attribute lookup 2014-05-06 14:37:28 -05:00
index.html.erb Guides: output valid HTML5 2014-05-05 17:42:04 -04:00
initialization.md wrap methods in backticks [ci skip] 2014-04-19 14:19:53 +04:00
layout.html.erb remove ecosystem link that is broken 2014-05-18 19:17:09 +05:30
layouts_and_rendering.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
maintenance_policy.md [ci skip] Document Rails' shifted semver. 2014-05-30 11:40:02 +08:00
migrations.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
nested_model_forms.md [ci skip] Improve doc, fix grammatical issue 2014-04-13 21:20:31 +05:30
plugins.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
rails_application_templates.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
rails_on_rack.md Use generated binstubs in guides examples. 2014-05-20 13:29:18 +02:00
routing.md Add @senny's changed from #14741, including code font for `resources` 2014-05-29 00:20:40 -07:00
ruby_on_rails_guides_guidelines.md [ci skip] Update GFM link in guides guidelines. 2014-05-25 23:36:02 +08:00
security.md Replace first person point of view on guides. 2014-05-16 17:15:00 -07:00
testing.md Update Minitest references in Testing Guide 2014-05-30 09:37:41 -03:00
upgrading_ruby_on_rails.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
working_with_javascript_in_rails.md Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00