rails--rails/actionpack/test/controller
Michael Koziarski 55f444e694 Send freshness information when sending Etags. Without this internet explorer will not send conditional gets for a resource, but instead hold on to the responses for the current browser session.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7309 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-08-12 22:32:19 +00:00
..
controller_fixtures New routes implementation. Simpler, faster, easier to understand. The published API for config/routes.rb is unchanged, but nearly everything else is different, so expect breakage in plugins and libs that try to fiddle with routes. 2006-06-01 15:42:08 +00:00
deprecation Deprecation: remove deprecated url_for(:symbol, *args) and redirect_to(:symbol, *args) controller methods. Use named routes instead. 2007-03-13 05:44:18 +00:00
html-scanner Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] 2007-02-04 20:04:40 +00:00
session Parse url-encoded and multipart requests ourselves instead of delegating to CGI. 2007-05-18 06:24:50 +00:00
action_pack_assertions_test.rb Add ActionController::Routing::Helpers, a module to contain common URL helpers such as polymorphic_url. 2007-05-12 04:18:46 +00:00
addresses_render_test.rb Extract dynamic scaffolding into a plugin. Closes #7700. 2007-03-04 08:35:52 +00:00
assert_select_test.rb Add support for assert_select_rjs with :show and :hide. #7780 [dchelimsky] 2007-05-26 17:29:23 +00:00
base_test.rb Mocha 0.4 mixes in more public instance methods, confusing controller identification of action methods. Closes #7347. 2007-01-24 12:04:08 +00:00
benchmark_test.rb Remove ::Controllers related cruft; fix AP tests 2006-02-26 17:49:09 +00:00
caching_test.rb Action caching is limited to GET requests returning 200 OK status. Closes #3335. 2007-06-08 05:01:35 +00:00
capture_test.rb Deprecation: remove deprecated update_element_function, start_form_tag, and end_form_tag. Use RJS and form_tag instead. 2007-03-13 05:24:10 +00:00
cgi_test.rb Don't mistakenly interpret the request uri as the query string. Closes #8731. 2007-06-23 00:13:40 +00:00
components_test.rb Don't prepare response when rendering a component. Closes #8493. 2007-05-27 23:48:28 +00:00
content_type_test.rb Allow Controllers to have multiple view_paths instead of a single template_root. Closes #2754 [John Long] 2007-02-04 20:47:05 +00:00
cookie_test.rb Allow you to delete cookies with options. Closes #3685 [josh, Chris Wanstrath] 2007-07-01 23:27:59 +00:00
custom_handler_test.rb ActionView: Allow to register a Template handler with a Symbol (dont kill markaby) (closes #4328) [murphy@cYcnus.de] 2006-03-26 21:50:22 +00:00
fake_controllers.rb Don't let arbitrary classes match as controllers 2006-02-04 23:59:37 +00:00
fake_models.rb Introduce fake_models.rb to avoid platform-specific code. [mpalmer] Closes #8714 2007-07-17 09:44:03 +00:00
filter_params_test.rb Fix filtered parameter logging with nil parameter values. Closes #8422. 2007-05-21 23:01:17 +00:00
filters_test.rb Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes] 2007-07-11 02:29:25 +00:00
flash_test.rb Sweep flash when filter chain is halted. Closes #6175. [Caio Chassot <lists@v2studio.com>] 2007-05-06 04:17:01 +00:00
fragment_store_setting_test.rb MemCache store may be given multiple addresses. Closes #2869. 2005-11-16 08:35:31 +00:00
helper_test.rb Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH] 2007-02-24 20:31:34 +00:00
http_authentication_test.rb Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well (closes #6754) [mislaw] 2007-06-23 16:43:08 +00:00
integration_test.rb Take advantage of Mocha support for sequenced returns. Closes #8639 [Josh Peek] 2007-06-13 00:55:11 +00:00
layout_test.rb Add some performance enhancements to ActionView. 2007-05-15 06:36:34 +00:00
mime_responds_test.rb Introduce a default respond_to block for custom types. Closes #8174. 2007-05-26 03:11:34 +00:00
mime_type_test.rb Add multipart and url-encoded form mime types. 2007-05-15 23:57:16 +00:00
new_render_test.rb Added partial layouts (see example in action_view/lib/partials.rb) [DHH] 2007-08-02 20:10:03 +00:00
polymorphic_routes_test.rb * url_for now accepts a series of symbols representing the namespace of the record [Josh Knowles]. Closes #8640 2007-07-19 13:42:11 +00:00
record_identifier_test.rb Added record identifications to FormHelper#form_for and PrototypeHelper#remote_form_for [DHH] 2007-05-14 17:30:35 +00:00
redirect_test.rb Removed deprecated parameters_for_method_reference concept (legacy from before named routes) [DHH] Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [DHH] 2007-05-12 21:12:31 +00:00
render_test.rb Send freshness information when sending Etags. Without this internet explorer will not send conditional gets for a resource, but instead hold on to the responses for the current browser session. 2007-08-12 22:32:19 +00:00
request_test.rb Fixed that file.content_type for uploaded files would include a trailing \r #9053 [bgreenlee] 2007-07-24 01:20:18 +00:00
rescue_test.rb Make sure missing template exceptions actually say which template they were looking for. Closes #8683 [dasil003] 2007-07-11 23:32:02 +00:00
resources_test.rb Allow you to set custom :conditions on resource routes. [Rick] 2007-07-25 02:47:21 +00:00
routing_test.rb Prefix nested resource named routes with their action name, e.g. new_group_user_path(@group) instead of group_new_user_path(@group). The old nested action named route is deprecated in Rails 1.2.4. Closes #8558. 2007-06-27 08:38:55 +00:00
selector_test.rb Use a consistent load path to avoid double requires. Fix some scattered Ruby warnings. 2007-01-28 07:16:55 +00:00
send_file_test.rb Allow send_file/send_data to use a registered mime type as the :type parameter #7620 [jonathan] 2007-02-25 20:16:58 +00:00
session_management_test.rb session_enabled? works with session :off. Closes #6680. 2007-02-27 06:36:25 +00:00
test_test.rb Include location header in args. 2007-05-18 21:23:07 +00:00
url_rewriter_test.rb Make :trailing_slash work with query parameters for url_for. Closes #4004 [nov] 2007-07-14 09:28:56 +00:00
verification_test.rb Deprecation: verification with :redirect_to => :named_route shouldn't be deprecated. Closes #7525. 2007-03-14 01:38:41 +00:00
view_paths_test.rb Make ActionView#view_paths an attr_accessor for real this time. Also, don't perform an unnecessary #compact on the @view_paths array in #initialize. Closes #8582 [dasil003, julik, rick] 2007-06-15 23:52:37 +00:00
webservice_test.rb Parse url-encoded and multipart requests ourselves instead of delegating to CGI. 2007-05-18 06:24:50 +00:00