1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/template
Carlhuda c1304098cc Reorganize autoloads:
* A new module (ActiveSupport::Autoload) is provide that extends
    autoloading with new behavior.
  * All autoloads in modules that have extended ActiveSupport::Autoload
    will be eagerly required in threadsafe environments
  * Autoloads can optionally leave off the path if the path is the same
    as full_constant_name.underscore
  * It is possible to specify that a group of autoloads live under an
    additional path. For instance, all of ActionDispatch's middlewares
    are ActionDispatch::MiddlewareName, but they live under 
    "action_dispatch/middlewares/middleware_name"
  * It is possible to specify that a group of autoloads are all found
    at the same path. For instance, a number of exceptions might all
    be declared there.
  * One consequence of this is that testing-related constants are not
    autoloaded. To get the testing helpers for a given component,
    require "component_name/test_case". For instance, "action_controller/test_case".
  * test_help.rb, which is automatically required by a Rails application's
    test helper, requires the test_case.rb for all active components, so
    this change will not be disruptive in existing or new applications.
2009-12-02 20:01:08 -08:00
..
html-scanner File extra test folders into controller, dispatch, or template 2009-10-03 21:05:51 -05:00
active_model_helper_i18n_test.rb Bring agnosticism to error_messages_for. 2009-10-17 13:03:28 -03:00
active_model_helper_test.rb Bring agnosticism to error_messages_for. 2009-10-17 13:03:28 -03:00
ajax_test.rb Fix parens warning in ajax test 2009-12-01 23:19:41 -06:00
asset_tag_helper_test.rb Start adding configuration to ActionView instead of using constants. 2009-10-14 13:36:41 -07:00
atom_feed_helper_test.rb Don't call additional methods on builders passed to the atom_feed helper. 2009-08-09 13:10:08 +12:00
body_parts_test.rb Use response_body rather than performed? 2009-08-09 04:12:09 -03:00
capture_helper_test.rb Add content_for?(:name) helper to check if content_for(:name) is present [#1311 state:resolved] 2009-06-21 17:07:22 +01:00
compiled_templates_test.rb Refactor ActionView::Resolver 2009-09-03 11:18:57 -07:00
date_helper_i18n_test.rb Introduce :almost keyword for distance_of_time_in_words. Make 1.75 days - 2 days return '2 days'. 2009-09-28 14:37:31 +13:00
date_helper_test.rb Introduce :almost keyword for distance_of_time_in_words. Make 1.75 days - 2 days return '2 days'. 2009-09-28 14:37:31 +13:00
erb_util_test.rb Switch to on-by-default XSS escaping for rails. 2009-10-08 09:31:20 +13:00
form_helper_test.rb Allow explicit placement of hidden id element for nested models. 2009-11-15 21:47:57 +01:00
form_options_helper_i18n_test.rb I18n: use I18n for select helpers' prompt text 2009-08-26 13:55:57 -07:00
form_options_helper_test.rb Restore split between require-time and runtime load path mungery. Simplifies vendor requires. 2009-09-24 18:38:18 -07:00
form_tag_helper_test.rb Start adding configuration to ActionView instead of using constants. 2009-10-14 13:36:41 -07:00
javascript_helper_test.rb Got tests to pass with some more changes. 2009-08-15 12:32:02 -07:00
number_helper_i18n_test.rb Bump mocha requirement for Ruby 1.9 compat. Remove uses_mocha. 2009-02-03 18:40:22 -08:00
number_helper_test.rb Ruby 1.9: fix number precision test 2009-11-04 16:10:24 -08:00
output_buffer_test.rb Ruby 1.9: flushing the output buffer preserves its encoding 2009-05-28 17:12:48 -05:00
prototype_helper_test.rb Got tests to pass with some more changes. 2009-08-15 12:32:02 -07:00
raw_output_helper_test.rb Switch to on-by-default XSS escaping for rails. 2009-10-08 09:31:20 +13:00
record_tag_helper_test.rb API change: content_tag_for outputs prefixed class name 2009-10-08 14:13:49 -05:00
render_test.rb Reorganize autoloads: 2009-12-02 20:01:08 -08:00
safe_buffer_test.rb Fix failing safe buffer test. We don't patch CGI.escapeHTML, only ERB:Util. 2009-10-10 21:30:51 -05:00
sanitize_helper_test.rb Switch to on-by-default XSS escaping for rails. 2009-10-08 09:31:20 +13:00
scriptaculous_helper_test.rb Temporarily modifies setup to call super directly. This can support more T::U runners. 2009-04-08 17:33:41 -07:00
tag_helper_test.rb Switch to on-by-default XSS escaping for rails. 2009-10-08 09:31:20 +13:00
test_case_test.rb Share ActionView::TestCase's output_buffer with view for concat support. 2009-11-07 00:42:07 +01:00
test_test.rb Start rewriting some internal tests to use the new routing dsl 2009-10-20 16:03:55 -05:00
text_helper_test.rb Fix that RedCloth shouldn't be required to run tests 2009-08-09 11:02:34 -07:00
translation_helper_test.rb Added partial scoping to TranslationHelper#translate, so if you call translate('.foo') from the people/index.html.erb template, you'll actually be calling I18n.translate(people.index.foo) [DHH] 2009-02-10 12:57:12 +01:00
url_helper_test.rb Privatize Routing.possible_controllers and fix brittle url helper 2009-11-23 21:50:21 -06:00